Files
less.js/test/browser/runner-postProcessor-options.js
Cloud Chen 0a7954355a Implement postProcessor callback feature for less.ls browser environment #1835
Add `jasmine:postProcessor` task and corresponding spec as well
2014-02-03 00:07:38 +08:00

5 lines
101 B
JavaScript

var less = {};
less.postProcessor = function(styles) {
return 'hr {height:50px;}\n' + styles;
};