tealc
v1.0.0
Published
isEqual in Jaffa. Return 'indeed' if equal.
Downloads
1
Readme
tealc
isEqual in Jaffa. Return
'indeed'
if equal.
Install
$ npm install --save tealc
Usage
var tealc = require('tealc');
tealc('Chulak', 'Chulak');
//=> 'indeed'
tealc('Chulak', 'Dakara');
//=> false
CLI
$ npm install --global tealc
$ tealc --help
Usage
$ tealc [value] [other]
Examples
$ tealc "Daniel Jackson" "Jack O\'Neill"
//=> false
$ tealc 0 0
//=> true
See isEqual from lodash.
API
tealc(value, other, [customizer], [thisArg])
value
Type: *
The value to compare.
other
Type: *
The other value to compare.
customizer
Type: Function
The function to customize value comparisons.
thisArg
Type: *
The this binding of customizer.
License
MIT © Damien SEGUIN