flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
16
VISUALIZACION/node_modules/falafel/example/keyword.js
generated
vendored
Executable file
16
VISUALIZACION/node_modules/falafel/example/keyword.js
generated
vendored
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
var falafel = require('../');
|
||||
var src = 'console.log(beep "boop", "BOOP");';
|
||||
|
||||
function isKeyword (id) {
|
||||
if (id === 'beep') return true;
|
||||
}
|
||||
|
||||
var output = falafel(src, { isKeyword: isKeyword }, function (node) {
|
||||
if (node.type === 'UnaryExpression'
|
||||
&& node.operator === 'beep') {
|
||||
node.update(
|
||||
'String(' + node.argument.source() + ').toUpperCase()'
|
||||
);
|
||||
}
|
||||
});
|
||||
console.log(output);
|
||||
Loading…
Add table
Add a link
Reference in a new issue