Skip to content

Commit 9f27a03

Browse files
committed
bump to version 0.2.6
1 parent 894aaa5 commit 9f27a03

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

jsonpath.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4856,8 +4856,6 @@ function unique(results) {
48564856
module.exports = Handlers;
48574857

48584858
},{"..":"jsonpath","./aesprim":"./aesprim","./index":5,"./slice":7,"static-eval":13,"underscore":9}],5:[function(require,module,exports){
4859-
/* global toString */
4860-
48614859
var assert = require('assert');
48624860
var dict = require('./dict');
48634861
var Parser = require('./parser');
@@ -5097,7 +5095,7 @@ JSONPath.prototype._normalize = function(path) {
50975095
}
50985096

50995097
function _is_string(obj) {
5100-
return toString.call(obj) == '[object String]';
5098+
return Object.prototype.toString.call(obj) == '[object String]';
51015099
}
51025100

51035101
JSONPath.Handlers = Handlers;

0 commit comments

Comments
 (0)