UNPKG

@marko/compiler

Version:
18 lines (15 loc) 313 B
"use strict"; var nextTransformerId = 0; class Transformer { constructor() { this.id = nextTransformerId++; this.name = null; this.tag = null; this.path = null; this._func = null; } toString() { return "[Taglib.Transformer: " + this.path + "]"; } } module.exports = Transformer;