mirror of
https://github.com/less/less.js.git
synced 2026-01-13 01:08:11 -05:00
* Move test data to separate module - @todo--fix some browser tests * Fix all browser tests
9 lines
212 B
JavaScript
9 lines
212 B
JavaScript
var collection = [];
|
|
|
|
functions.add('store', function(val) {
|
|
collection.push(val); // imma store this for later
|
|
return false;
|
|
});
|
|
functions.add('list', function() {
|
|
return less.value(collection);
|
|
}); |