UNPKG

ember-cli-ajh

Version:

Command line tool for developing ambitious ember.js apps

11 lines (8 loc) 199 B
var indexOf = require('./indexOf'); /** * If array contains values. */ function contains(arr, val) { return indexOf(arr, val) !== -1; } module.exports = contains;