1.0.0 • Published 8 years ago

@f/is-functor v1.0.0

Weekly downloads
12
License
MIT
Repository
github
Last release
8 years ago

is-functor

Build status Git tag NPM version Code style

Check if looks like a functor (implments map).

Installation

$ npm install @f/is-functor

Usage

var isFunctor = require('@f/is-functor')

isFunctor([]) // => true
isFunctor({}) // => false
isFunctor(Object.create({map: function () {}})) // => true

API

isFunctor(ob)

  • obj - object to check

Returns: boolean indicating whether obj is a functor

License

MIT