UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

14 lines (10 loc) 256 B
var filter = require('./filter'); /** * Remove all null/undefined items from array. */ function compact(arr) { return filter(arr, function(val){ return (val != null); }); } module.exports = compact;