plugin-collection.js 212 B

123456789
  1. var collection = [];
  2. functions.add('store', function(val) {
  3. collection.push(val); // imma store this for later
  4. return false;
  5. });
  6. functions.add('list', function() {
  7. return less.value(collection);
  8. });