Comparing version 0.6.4 to 0.6.5
@@ -5,26 +5,2 @@ "use strict"; | ||
/* The module API */ | ||
exports.extend = extend; | ||
exports.clone = clone; | ||
exports.omit = omit; | ||
exports.escapeRegExp = escapeRegExp; | ||
exports.pluck = pluck; | ||
exports.isNumber = isNumber; | ||
exports.isPlainObject = isPlainObject; | ||
exports.arrayify = arrayify; | ||
exports.every = every; | ||
exports.each = each; | ||
exports.symbol = symbol; | ||
exports.bytesToSize = bytesToSize; | ||
exports.getHomeDir = getHomeDir; | ||
exports.fill = fill; | ||
exports.padRight = padRight; | ||
exports.exists = exists; | ||
exports.without = without; | ||
exports.first = first; | ||
exports.commonDir = commonDir; | ||
exports.union = union; | ||
exports.commonSequence = commonSequence; | ||
exports.escapeForJSON = escapeForJSON; | ||
/** | ||
@@ -539,7 +515,32 @@ Merge a list of objects, left to right, into one. | ||
some cross platform symbols (`tick` and `cross`) | ||
@namespace symbol | ||
@returns {Object} | ||
*/ | ||
var symbol = { | ||
var symbol = exports.symbol = { | ||
tick: process.platform === "win32" ? "\u221A" : "✔︎", | ||
cross: process.platform === "win32" ? "\u00D7": "✖" | ||
}; | ||
/* The module API */ | ||
exports.extend = extend; | ||
exports.clone = clone; | ||
exports.omit = omit; | ||
exports.escapeRegExp = escapeRegExp; | ||
exports.pluck = pluck; | ||
exports.isNumber = isNumber; | ||
exports.isPlainObject = isPlainObject; | ||
exports.arrayify = arrayify; | ||
exports.every = every; | ||
exports.each = each; | ||
exports.symbol = symbol; | ||
exports.bytesToSize = bytesToSize; | ||
exports.getHomeDir = getHomeDir; | ||
exports.fill = fill; | ||
exports.padRight = padRight; | ||
exports.exists = exists; | ||
exports.without = without; | ||
exports.first = first; | ||
exports.commonDir = commonDir; | ||
exports.union = union; | ||
exports.commonSequence = commonSequence; | ||
exports.escapeForJSON = escapeForJSON; |
{ | ||
"name": "wodge", | ||
"version": "0.6.4", | ||
"version": "0.6.5", | ||
"description": "a wodge of functional dough", | ||
@@ -17,12 +17,15 @@ "main": "lib/wodge.js", | ||
"browsers": [ | ||
"ie/6..latest", | ||
"ie/8..latest", | ||
"firefox/17..latest", | ||
"firefox/nightly", | ||
"chrome/22..latest", | ||
"firefox/16..latest", | ||
"safari/latest", | ||
"opera/11.0..latest", | ||
"iphone/6", | ||
"ipad/6", | ||
"android-browser/latest" | ||
"chrome/canary", | ||
"opera/12..latest", | ||
"opera/next", | ||
"safari/5.1..latest", | ||
"ipad/6.0..latest", | ||
"iphone/6.0..latest", | ||
"android-browser/4.2..latest" | ||
] | ||
} | ||
} |
52327
1255