fairmont-helpers
Advanced tools
Comparing version 1.0.0-beta-23 to 1.0.0-beta-24
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
// Generated by CoffeeScript 1.9.3 | ||
(function() { | ||
@@ -3,0 +3,0 @@ var _, binary, cat, complement, compose, curry, deepEqual, detach, difference, dupes, empty, fifth, first, flip, fourth, identity, includes, intersection, last, nth, partial, push, range, ref, remove, rest, second, shuffle, slice, ternary, third, unary, union, uniq, unique, uniqueBy, |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
// Generated by CoffeeScript 1.9.3 | ||
(function() { | ||
@@ -3,0 +3,0 @@ var call, lift, ref; |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
// Generated by CoffeeScript 1.9.3 | ||
(function() { | ||
@@ -3,0 +3,0 @@ var Crypto, base64, base64url, md5; |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
// Generated by CoffeeScript 1.9.3 | ||
(function() { | ||
@@ -3,0 +3,0 @@ var Array, Async, Numeric, Object, String, Type, Util, include; |
@@ -1,7 +0,15 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
// Generated by CoffeeScript 1.9.3 | ||
(function() { | ||
var abs, add, curry, div, even, gt, gte, lt, lte, max, min, mod, mul, negate, odd, partial, pow, ref, sub; | ||
var abs, add, curry, div, eq, even, gt, gte, lt, lte, max, min, mod, mul, negate, neq, odd, partial, pow, ref, sub; | ||
ref = require("fairmont-core"), curry = ref.curry, partial = ref.partial, negate = ref.negate; | ||
eq = curry(function(x, y) { | ||
return x === y; | ||
}); | ||
neq = curry(function(x, y) { | ||
return x !== y; | ||
}); | ||
gte = curry(function(x, y) { | ||
@@ -50,2 +58,4 @@ return y >= x; | ||
module.exports = { | ||
eq: eq, | ||
neq: neq, | ||
gt: gt, | ||
@@ -52,0 +62,0 @@ lt: lt, |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
// Generated by CoffeeScript 1.9.3 | ||
(function() { | ||
@@ -3,0 +3,0 @@ var bind, clone, curry, deepEqual, delegate, detach, extend, fromJSON, has, include, isFunction, isObject, keys, merge, negate, omit, pairs, pick, properties, property, query, ref, ref1, toJSON, values, |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
// Generated by CoffeeScript 1.9.3 | ||
(function() { | ||
@@ -3,0 +3,0 @@ var blank, camelCase, capitalize, curry, dashed, htmlEscape, isMatch, match, plainText, replace, titleCase, toLower, toString, toUpper, underscored, w; |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
// Generated by CoffeeScript 1.9.3 | ||
(function() { | ||
@@ -18,3 +18,3 @@ var GeneratorFunction, Type, curry, instanceOf, isArray, isBoolean, isDate, isDefined, isError, isFinite, isFloat, isFunction, isGenerator, isInteger, isMember, isNaN, isNumber, isObject, isPromise, isRegExp, isString, isType, prototype; | ||
isMember = curry(function(type, value) { | ||
return (isType(type, value)) || (isMember(type, prototype(value))); | ||
return (value != null) && ((isType(type, value)) || (isMember(type, prototype(value)))); | ||
}); | ||
@@ -21,0 +21,0 @@ |
@@ -1,2 +0,2 @@ | ||
// Generated by CoffeeScript 1.10.0 | ||
// Generated by CoffeeScript 1.9.3 | ||
(function() { | ||
@@ -95,3 +95,3 @@ var Method, async, benchmark, blank, curry, deepEqual, empty, isArray, isFunction, isGenerator, isObject, isString, length, memoize, promise, ref, ref1, sleep, timer, times; | ||
deepEqual = function(a, b) { | ||
var assert, error; | ||
var assert; | ||
assert = require("assert"); | ||
@@ -101,3 +101,3 @@ try { | ||
return true; | ||
} catch (error) { | ||
} catch (_error) { | ||
return false; | ||
@@ -104,0 +104,0 @@ } |
{ | ||
"name": "fairmont-helpers", | ||
"version": "1.0.0-beta-23", | ||
"version": "1.0.0-beta-24", | ||
"description": "True functional reactive programming for JavaScript.", | ||
@@ -12,5 +12,5 @@ "files": [ | ||
"scripts": { | ||
"prepublish": "coffee --nodejs --harmony -o lib/ -c src/*.*coffee", | ||
"test": "coffee --nodejs --harmony test/index.coffee", | ||
"watch": "coffee --nodejs --harmony -o lib/ -cw src/*.*coffee", | ||
"prepublish": "coffee -o lib/ -c src/*.*coffee", | ||
"test": "coffee test/index.coffee", | ||
"watch": "coffee -o lib/ -cw src/*.*coffee", | ||
"version": "(node_modules/.bin/json -f package.json version > VERSION)", | ||
@@ -33,8 +33,8 @@ "tag": "(cat VERSION | xargs -I version git tag -am version version) && git push --tags" | ||
"dependencies": { | ||
"fairmont-core": "^1.0.0-beta-20", | ||
"fairmont-multimethods": "^1.0.0-beta-19", | ||
"fairmont-core": "^1.0.0-beta-23", | ||
"fairmont-multimethods": "^1.0.0-beta-20", | ||
"coffee-script": "~1.9.3", | ||
"when": "^3.7.3" | ||
}, | ||
"engine": "node >= 0.12.x" | ||
"engine": "node >= 4.0.x" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31059
723