@stdlib/math-base-tools-evalpoly-compile
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -37,6 +37,6 @@ /** | ||
// Templates: | ||
var SINGLE_COEFFICIENT_TEMPLATE = readFile( join( dir, 'single_coefficient.tmpl' ), opts ); // eslint-disable-line id-length | ||
var EVALPOLY_TEMPLATE = readFile( join( dir, 'evalpoly.tmpl' ), opts ); | ||
var EMPTY_TEMPLATE = readFile( join( dir, 'empty.tmpl' ), opts ); | ||
var LOOP_TEMPLATE = readFile( join( dir, 'loop.tmpl' ), opts ); | ||
var SINGLE_COEFFICIENT_TEMPLATE = readFile( join( dir, 'single_coefficient.js.txt' ), opts ); // eslint-disable-line id-length | ||
var EVALPOLY_TEMPLATE = readFile( join( dir, 'evalpoly.js.txt' ), opts ); | ||
var EMPTY_TEMPLATE = readFile( join( dir, 'empty.js.txt' ), opts ); | ||
var LOOP_TEMPLATE = readFile( join( dir, 'loop.js.txt' ), opts ); | ||
var MAX_CHARS = 68; // max-len (80) - chars already in line ('tab': 4, 'return ': 7, ';': 1) | ||
@@ -43,0 +43,0 @@ |
{ | ||
"name": "@stdlib/math-base-tools-evalpoly-compile", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Compile a module for evaluating a polynomial.", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39818