UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

28 lines (22 loc) 566 B
/* MIT License http://www.opensource.org/licenses/mit-license.php */ "use strict"; const RuntimeGlobals = require("../RuntimeGlobals"); const RuntimeModule = require("../RuntimeModule"); class ChunkNameRuntimeModule extends RuntimeModule { /** * @param {string} chunkName the chunk's name */ constructor(chunkName) { super("chunkName"); this.chunkName = chunkName; } /** * @returns {string} runtime code */ generate() { return `${RuntimeGlobals.chunkName} = ${JSON.stringify(this.chunkName)};`; } } module.exports = ChunkNameRuntimeModule;