Changelog
v0.8.2
install
completely refactored:
node benchmark
.invoke
added - invoke(f)
invokes the function f
(useful with map etc.).values
added - creates an array from the values of an object.at
and select
will return undefined
now if invoked on undefined
.isUpper
added - checks if a string is all upper case.isLower
added - checks if a string is all lower case.isNumeric
added - checks if a string is numeric (/^[0-9]+$/
).ord
added - returns the unicode code point for the given character.chr
added - returns the character for the given unicode code point.lasts
and heads
removed - they were added in a bleary-eyed night
and do not make any sense at all.inits
and lasts
implemented - they were added but implementations
were forgotten in that same bleary-eyed night.Changelog
v0.8.1
Nodash v0.8 would not work in browsers as it references setImmediate
which is only available in NodeJS. This patch fixes that.
Changelog
v0.7.1
run
function allows you do declare a schedule with
dependencies between tasks which is scheduled asynchronously.async
added - turns ordinary functions into asynchronous functions,isObject
added - checks if something is an object but not an array
and not null
.isNull
to isEmpty
.clone
added to create deep copies of objects.Changelog
v0.6.1
node-prelude
to nodash
.isInfinite
exported as utility function.keys
for enumerating the keys of an object.cycle
/w array, string, object, streams, and inifinite streams.pipe
for chaining functions.Prelude
are now Nodash
.