coco-js
v0.0.3
Published
Add CoffeeScript prototype alias operator (::) to JavaScript
Downloads
30
Readme
coco-js
coco-js adds the CoffeeScript prototype alias operator ::
to JavaScript.
npm install coco-js
Examples
Array::slice.call("string")
/*
[
's',
't',
'r',
'i',
'n',
'g'
]
*/
var prop = 'slice';
Array::[prop].call("string")
/*
[
's',
't',
'r',
'i',
'n',
'g'
]
*/
var isString = function (obj) {
return Object::toString.call(obj) === '[object String]'
}
isString('string') // true
isString([]) // false
Tests
make test