token

node v10.24.1
version: 1.0.0
endpointsharetweet
let SourceLocation = require('@runkit/katex/sourcelocation/1.0.0') class Token { constructor(text, loc) { this.text = text; this.loc = loc; } range( endToken, text) { return new Token(text, SourceLocation.range(this, endToken)); } } module.exports = { Token }
Loading…

no comments

    sign in to comment