total-serialism
Advanced tools
Comparing version 1.6.6 to 1.6.7
{ | ||
"name": "total-serialism", | ||
"version": "1.6.6", | ||
"version": "1.6.7", | ||
"description": "A set of methods for the generation and transformation of number sequences useful in algorithmic composition", | ||
@@ -10,3 +10,3 @@ "main": "index.js", | ||
"clean": "rm -rf build", | ||
"bundle": "mkdir build && browserify --standalone Bundle index.js > build/ts.bundle.js", | ||
"bundle": "mkdir build && browserify --standalone TotalSerialism index.js > build/ts.bundle.js", | ||
"build-es5": "babel build/ts.bundle.js -o build/ts.es5.js", | ||
@@ -13,0 +13,0 @@ "build-min": "uglifyjs build/ts.es5.js -o build/ts.es5.min.js", |
@@ -8,8 +8,8 @@ | ||
const Srl = require(entryPoint); | ||
const Gen = require(entryPoint).Generative; | ||
const Algo = require(entryPoint).Algorithmic; | ||
const Mod = require(entryPoint).Transform; | ||
const Rand = require(entryPoint).Stochastic; | ||
const TL = require(entryPoint).Translate; | ||
const Util = require(entryPoint).Utility; | ||
const Gen = Srl.Generative; | ||
const Algo = Srl.Algorithmic; | ||
const Mod = Srl.Transform; | ||
const Rand = Srl.Stochastic; | ||
const TL = Srl.Translate; | ||
const Util = Srl.Utility; | ||
@@ -375,3 +375,3 @@ /* | ||
// evaluate the function and print results | ||
r = eval(f); | ||
let r = eval(f); | ||
if (r === undefined){ | ||
@@ -378,0 +378,0 @@ r = "void return"; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
31
1912599