Browse Source

Fix #1707 hasOwnProperty usage

v0.7.4-release
isaacs 13 years ago
parent
commit
98990b9779
  1. 8
      lib/module.js
  2. 7
      lib/querystring.js
  3. 8
      lib/repl.js

8
lib/module.js

@ -25,6 +25,12 @@ var runInThisContext = Script.runInThisContext;
var runInNewContext = Script.runInNewContext;
var assert = require('assert').ok;
function hOP(obj, prop) {
return Object.prototype.hasOwnProperty.call(obj, prop);
}
function Module(id, parent) {
this.id = id;
this.exports = {};
@ -85,7 +91,7 @@ function statPath(path) {
var packageCache = {};
function readPackage(requestPath) {
if (packageCache.hasOwnProperty(requestPath)) {
if (hOP(packageCache, requestPath)) {
return packageCache[requestPath];
}

7
lib/querystring.js

@ -25,6 +25,11 @@ var QueryString = exports;
var urlDecode = process.binding('http_parser').urlDecode;
function hOP(obj, prop) {
return Object.prototype.hasOwnProperty.call(obj, prop);
}
function charCode(c) {
return c.charCodeAt(0);
}
@ -166,7 +171,7 @@ QueryString.parse = QueryString.decode = function(qs, sep, eq) {
var k = QueryString.unescape(x[0], true);
var v = QueryString.unescape(x.slice(1).join(eq), true);
if (!obj.hasOwnProperty(k)) {
if (!hOP(obj, k)) {
obj[k] = v;
} else if (!Array.isArray(obj[k])) {
obj[k] = [obj[k], v];

8
lib/repl.js

@ -46,6 +46,12 @@ var path = require('path');
var fs = require('fs');
var rl = require('readline');
function hOP(obj, prop) {
return Object.prototype.hasOwnProperty.call(obj, prop);
}
var context;
var disableColors = true;
@ -446,7 +452,7 @@ REPLServer.prototype.complete = function(line) {
group.sort();
for (var j = 0; j < group.length; j++) {
c = group[j];
if (!uniq.hasOwnProperty(c)) {
if (!hOP(uniq, c)) {
completions.push(c);
uniq[c] = true;
}

Loading…
Cancel
Save