Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-04-23 20:31:42 +03:00
parent 6e85012121
commit 1d36658451

View File

@ -15,6 +15,16 @@ function(require){ var module={} // makes module AMD/node compatible...
var TAB_SIZE = var TAB_SIZE =
module.TAB_SIZE = 4 module.TAB_SIZE = 4
// Normalize indent...
//
// normalizeIndent(text)
// -> text
//
// This will remove common indent from each like of text, this is useful
// for printing function code of functions that were defined at deep levels
// of indent.
//
// XXX is this the right place for this??? // XXX is this the right place for this???
// ...when moving take care that ImageGrid's core.doc uses this... // ...when moving take care that ImageGrid's core.doc uses this...
var normalizeIndent = var normalizeIndent =