Comparing version 17.0.4 to 17.0.5
@@ -549,5 +549,5 @@ /* | ||
var self = this; | ||
return self.constructor.map(self, f); | ||
return map(self, f); | ||
})); | ||
(ap = (Parser.ap = liftM2((function(x, y) { | ||
(ap = (Parser.ap = liftM2.bind(null, (function(x, y) { | ||
return x(y); | ||
@@ -557,3 +557,3 @@ })))); | ||
var self = this; | ||
return self.constructor.ap(self, m2); | ||
return ap(self, m2); | ||
})); | ||
@@ -563,3 +563,3 @@ (chain = (Parser.chain = bind)); | ||
var self = this; | ||
return self.constructor.chain(self, f); | ||
return chain(self, f); | ||
})); | ||
@@ -571,3 +571,3 @@ (of = (Parser.of = (Parser.prototype.of = always))); | ||
var self = this; | ||
return self.constructor.concat(self, p); | ||
return concat(self, p); | ||
})); | ||
@@ -574,0 +574,0 @@ (exec = (function(f, g) { |
{ | ||
"name": "bennu", | ||
"version": "17.0.4", | ||
"version": "17.0.5", | ||
"description": "Parser Combinator Library", | ||
@@ -5,0 +5,0 @@ "author": "Matt Bierner", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
122351