class-utils

Utils for working with JavaScript classes and prototype methods.
Install
Install with npm:
$ npm install class-utils --save
Usage
var cu = require('class-utils');
API
Returns true if an array has any of the given elements, or an object has any of the give keys.
Params
obj {Object}
val {String|Array}
returns {Boolean}
Example
cu.has(['a', 'b', 'c'], 'c');
cu.has(['a', 'b', 'c'], ['c', 'z']);
cu.has({a: 'b', c: 'd'}, ['c', 'z']);
Returns true if an array or object has all of the given values.
Params
val {Object|Array}
values {String|Array}
returns {Boolean}
Example
cu.hasAll(['a', 'b', 'c'], 'c');
cu.hasAll(['a', 'b', 'c'], ['c', 'z']);
cu.hasAll({a: 'b', c: 'd'}, ['c', 'z']);
Cast the given value to an array.
Params
val {String|Array}
returns {Array}
Example
cu.arrayify('foo');
cu.arrayify(['foo']);
Returns true if a value has a contructor
Params
value {Object}
returns {Boolean}
Example
cu.hasConstructor({});
cu.hasConstructor(Object.create(null));
Get the native ownPropertyNames from the constructor of the given object. An empty array is returned if the object does not have a constructor.
Params
obj {Object}: Object that has a constructor.
returns {Array}: Array of keys.
Example
cu.nativeKeys({a: 'b', b: 'c', c: 'd'})
cu.nativeKeys(function(){})
Returns property descriptor key if it's an "own" property of the given object.
Params
obj {Object}
key {String}
returns {Object}: Returns descriptor key
Example
function App() {}
Object.defineProperty(App.prototype, 'count', {
get: function() {
return Object.keys(this).length;
}
});
cu.getDescriptor(App.prototype, 'count');
Copy a descriptor from one object to another.
Params
receiver {Object}
provider {Object}
name {String}
returns {Object}
Example
function App() {}
Object.defineProperty(App.prototype, 'count', {
get: function() {
return Object.keys(this).length;
}
});
var obj = {};
cu.copyDescriptor(obj, App.prototype, 'count');
Copy static properties, prototype properties, and descriptors
from one object to another.
Params
receiver {Object}
provider {Object}
omit {String|Array}: One or more properties to omit
returns {Object}
Inherit the static properties, prototype properties, and descriptors
from of an object.
Params
receiver {Object}
provider {Object}
omit {String|Array}: One or more properties to omit
returns {Object}
Returns a function for extending the static properties, prototype properties, and descriptors from the Parent constructor onto Child constructors.
Params
Parent {Function}: Parent ctor
extend {Function}: Optional extend function to handle custom extensions. Useful when updating methods that require a specific prototype.
Child {Function}: Child ctor
proto {Object}: Optionally pass additional prototype properties to inherit.
returns {Object}
Example
var extend = cu.extend(Parent);
Parent.extend(Child);
Parent.extend(Child, {
foo: function() {},
bar: function() {}
});
Bubble up events emitted from static methods on the Parent ctor.
Params
Parent {Object}
events {Array}: Event names to bubble up
Related projects
You might also be interested in these projects:
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Building docs
Generate readme and API documentation with verb:
$ npm install verb && npm run docs
Or, if verb is installed globally:
$ verb
Running tests
Install dev dependencies:
$ npm install -d && npm test
Author
Jon Schlinkert
Follow me on GitHub or Twitter for updates about class-utils and my other libraries:
License
Copyright © 2016, Jon Schlinkert.
Released under the MIT license.
This file was generated by verb, v, on April 05, 2016.