Skip to content

Commit 1e8707b

Browse files
committed
feat!: implement css lexer & parser
1 parent 4316513 commit 1e8707b

File tree

7 files changed

+1002
-379
lines changed

7 files changed

+1002
-379
lines changed

debug.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
function debug(label) {
2+
return _debug.bind(null, label);
3+
}
4+
5+
function _debug(label) {
6+
var args = [].slice.call(arguments, 1);
7+
args.unshift('[' + label + ']');
8+
process.stderr.write(args.join(' ') + '\n');
9+
}
10+
11+
export default debug;

0 commit comments

Comments
 (0)