yno

0.0.1 • Public • Published

yno

pronounced: (y - no)

A bare-bone utility set, inspired by lodash, meant to be:

  • slim
  • independent
  • intuitive
  • accessible
  • tested

Installation

$ npm i -S yno

Usage

const y = require('yno');
 
y.isArray([1, 2, 3]) // => true
 
y.isString('hello world') // => true
 
y.isBoolean('i am a boolean!') // => false
 
let foo;
y.isPresent(foo) // => false
 
foo = 'bar';
y.isPresent(foo) // => true

Testing

Yno uses vowsjs and shouldjs.

$ npm test

Readme

Keywords

Package Sidebar

Install

npm i yno

Weekly Downloads

0

Version

0.0.1

License

ISC

Last publish

Collaborators

  • davidhunt