1.0.0 • Published 9 years ago

tealc v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

tealc Build Status

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