UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

14 lines (11 loc) 256 B
define(['./filter'], function (filter) { /** * Remove all null/undefined items from array. */ function compact(arr) { return filter(arr, function(val){ return (val != null); }); } return compact; });