Files
less.js/test/less/javascript.less
2011-05-11 12:46:37 -04:00

17 lines
269 B
Plaintext

.eval {
js: `42`;
js: `1 + 1`;
js: `"hello world"`;
title: `process.title`;
ternary: `(1 + 1 == 2 ? true : false)`;
}
.scope {
@foo: 42;
var: `this.foo.toJS()`;
escaped: e(`2 + 5 + 'px'`);
}
.vars {
@var: `4 + 4`;
width: @var;
}