1.0.0 • Published 6 years ago

is-new v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

is-new

A function that remembers the values passed to it and returns true if a value is new. Packaged as a Node.js module.

Installation

npm install is-new --save

Usage

const IsNew = require('is-new')

// Create instance
const isNew = IsNew()

// Works with objects
const obj = {}
isNew(obj) // true
isNew(obj) // false

// Works with scalars
isNew('test') // true
isNew('test') // false