This Node.js package provides a ActiveSupport-flavoured Javascript core object extensions. A detailed list of features can be found below.
This project is work in progress and will grow in size continually when I feel the need to add certain functions. See "Contributing" if you miss any functionality, I'm always happy to merge your enhancements in!
Simple require galao in your application and it will be accessible from anywhere in your app:
require 'galao'
There is a browser version in the lib directory. Download the file from Github or require locally from your node_modules directory.
Caveats: The browser treats numbers differently than Node.JS. A number directly followed by a dot is interpreted as a decimal number without a decimal value and thus results in an exception. To avoid this exception and still use the number functions, bracket the number:
5.minutes()
=> Exception
(5).minutes()
=> All good!
Returns a new array without any null or undefined elements.
coffee> [1, 2, 3, null].compact()
[ 1, 2, 3 ]
coffee> [1, 2, 3, undefined].compact()
[ 1, 2, 3 ]
Returns the first element of the array matching the callback condition.
coffee> [{foo:1}, {foo:2}, {foo:3}].find (elem, index, array) -> elem.foo==2
{ foo: 2 }
coffee> [{foo:1}, {foo:2}, {foo:3}].find (elem, index, array) -> elem.foo==20
null
Interpret given number as seconds and return value in milliseconds.
coffee> 10.seconds()
10000
This function (and its related functions minutes(), hours(), etc.) becomes very useful for specifying timeouts and intervals:
setTimeout ->
console.log 'Timeout ended'
, 5.seconds()
There is also a singular version of this method simply for syntactical sugar.
Instead of writing 1.minutes()
, which is syntactically incorrect, one can also
write 1.minute()
.
Interpret given number as minutes and return value in milliseconds.
coffee> 2.minutes()
120000
Interpret given number as hours and return value in milliseconds.
coffee> 2.hours()
7200000
Interpret given number as days and return value in milliseconds.
coffee> 2.days()
172800000
Checks whether the number is even or not.
coffee> 5.even()
false
coffee> 6.even()
true
Checks whether the number is odd or not.
coffee> 5.odd()
true
coffee> 6.odd()
false
Capitalize first letter in string, remaining letters will stay untouched.
coffee> "test".capitalize()
'Test'
coffee> "tesT".capitalize()
'TesT'
Returns true
if the string starts with the given prefix.
coffee> "foo".startsWith 'f'
true
coffee> "foo".startsWith 'b'
false
Returns true
if the string ends with the given prefix.
coffee> "foo".endsWith 'o'
true
coffee> "foo".endsWith 'f'
false
Repeats the string n
times.
coffee> "foo".repeat 2
'foofoo'
Feel free to send me pull requests on Github, contributions are always welcome!