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

39 lines (31 loc) 569 B
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; class Source { source() { throw new Error("Abstract"); } buffer() { const source = this.source(); if (Buffer.isBuffer(source)) return source; return Buffer.from(source, "utf-8"); } size() { return this.buffer().length; } map(options) { return null; } sourceAndMap(options) { return { source: this.source(), map: this.map(options) }; } updateHash(hash) { throw new Error("Abstract"); } } module.exports = Source;