isogrammify
Have you ever wanted to turn this
!function(e,t,n,o,a,d,r,l,c,i,s,u,x){…
…into this?
!function(t,r,o,u,b,l,e,m,a,k,i,n,g){…
Well, that is exactly what isogrammify does. You pass a function and a word, and iosgrammify renames the variables for you, such that the renamed parameters form that word.
Usage in script
isogrammify takes three parameters,
program
(String
|Function
) The JS program to transform.
Note that this must be a complete syntactically valid script. You cannot pass a simple anonymous function. That is a syntax error. You can pass a named function, because it forms a valid program by itself.target
(String
) The string that the variables should be replaced by. Must be an isogram, that is a word without duplicate lettersraw
(Boolean
, optional) true
to return an AST instead of a string. Defaults to false
.
Examples (scripting)
var isogrammify = require('isogrammify');
var f = '!function(test){}()';
isogrammify(f, 'x');
var f = '!function(x,y,z){}()';
isogrammify(f, 'Yay');
var f = function (x,y,z){};
isogrammify(f, 'Yay');
var f = function f(x,y,z){};
isogrammify(f, 'abc');
Usage from command line
There is also a command-line interface, where isogrammify takes three arguments
inputFile
The filename of the JS program to transform. The file must contain a valid JavaScript program as descibed above.isogram
The string that the variables should be replaced by. Must be an isogram, that is a word without duplicate lettersoutputFile
(optional) A filename to write the output file to. Can be the same as inputFile
. If omitted, the output is written to the console.
Examples (CLI)
$ npm install isogrammify
…
$ isogrammify foo.js HelLo
!function(H,e,l,L,o){…
$ isogrammify foo.js HelLo bar.js
Wrote 4242 bytes to "bar.js".
Does it accept unicode characters?
Oh yes, it does!
This tool was originally created as a part of minislides, where I did this:
var f = '!function(e,a,t,c,n,o,s,r,i,l,d,u,f,y,k,m){…';
isogrammify(f, 'ツminïslĩdeṣ_FTWǃ');
But later, I decided against using non-ASCII characters, since they take up more than one byte per letter.
Note that ǃ
is a valid identifier, it is not an exclamation mark. Please use Mathias Bynens’s variable name validator to find valid characters, or browse the complete list.
Why can’t I simply search & replace instead?
Because the function body may contain identifiers with conflicting names. Even if you make sure that only the given variable is renamed, you may run into trouble because of inner functions with overlapping variable scopes.
For example, if you want to rename this function’s parameters to T,e,s,t
:
!function (foo, bar, baz, qux) { function t(e, foo) {e(); foo(); bar();} t(); a();}()
…you may destroy the inner bar()
call when you try to rename bar
to e
. That is because the inner function establishes a new scope for e
.
!function (T, e, s, t) { function t(e, foo) {e(); foo(); e();} t(); a();}()
So you’ll need to rename that e
to something else first, and so on.
!function (T, e, s, t) { function t(something, foo) {something(); foo(); e();} t(); a();}()