was.js

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 40  →  ?path2? @ 41
/trunk/dist/was.js
@@ -1,4 +1,4 @@
/*! was.js - v1.0.3 - 2019-08-01
/*! was.js - v1.0.4 - 2019-08-03
* http://grimore.org
* Copyright (c) 2019 [object Object]; Licensed GPL-3.0 */
/* Copyright (C) 2017 Wizardry and Steamworks - License: GNU GPLv3 */
@@ -113,7 +113,7 @@
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports.collections = {
product: wasProduct,
stride: wasStride,
@@ -178,13 +178,18 @@
return csv.join();
}
 
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
/* global wasCSVToArray, wasArrayToCSV, wasKeyValueToObject */
module.exports.formats = {
CSVToArray: wasCSVToArray,
ArrayToCSV: wasArrayToCSV
csv: {
CSVToArray: wasCSVToArray,
ArrayToCSV: wasArrayToCSV
},
kvp: {
KeyValueToObject: wasKeyValueToObject
}
};
}
 
@@ -205,15 +210,6 @@
return o;
}
 
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
module.exports.formats = {
KeyValueToObject: wasKeyValueToObject
};
}
 
/* Copyright (C) 2017 Wizardry and Steamworks - License: GNU GPLv3 */
/*************************************************************************/
/* fuss/lambda_calculus/functional_programming/aggregators @ grimore.org */
@@ -255,7 +251,7 @@
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports.lambda = {
switch: wasSwitch
};
@@ -272,7 +268,7 @@
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports.mathematics = {
MapValueToRange: wasMapValueToRange
};
@@ -312,7 +308,7 @@
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports.physics = {
HexToRGB: wasHexToRGB,
RGBToHex: wasRGBToHex
/trunk/dist/was.min.js
@@ -1,5 +1,5 @@
/*! was.js - v1.0.3 - 2019-08-01
/*! was.js - v1.0.4 - 2019-08-03
* http://grimore.org
* Copyright (c) 2019 [object Object]; Licensed GPL-3.0 */
 
function wasProduct(e,t){for(var r=Math.max(e.length,t.length),n={},a=0;a<r;++a)n[e[a]]=t[a];return n}function wasStride(e,t){return e.filter(function(e,r){return r%t==0})}function wasChunk(e,t){return e.length?[e.slice(0,t)].concat(e.slice(t).wasChunk(t)):[]}function wasEquals(e,t){if(!t)return!1;if(e.length!==t.length)return!1;for(var r=0,n=e.length;r<n;r++)if(e[r]instanceof Array&&t[r]instanceof Array){if(!e[r].equals(t[r]))return!1}else if(e[r]!==t[r])return!1;return!0}function wasCSVToArray(e){var t=[],r=[],n="";do{var a=e.charAt(0);if(e=e.slice(1,e.length),","!==a)if('"'!==a||e.charAt(0)!==a)if('"'!==a)n+=a;else{if(r[r.length-1]!==a){r.push(a);continue}r.pop()}else n+=a,e=e.slice(1,e.length);else{if('"'!==r[r.length-1]){t.push(n),n="";continue}n+=a}}while(""!==e);return t.push(n),t}function wasArrayToCSV(e){for(var t=[],r=0;r<e.length;++r){var n=e[r].toString().replace('"','""');/"\s,\r\n/.test(n)?t[r]='"'+n+'"':t[r]=n}return t.join()}function wasKeyValueToObject(e){var t={};return e.reduce(function(e,t,r){return e[r=Math.floor(r/2)]||(e[r]=[]),e[r].push(t),e},[]).forEach(function(e,r,n){t[e[0]]=e[1]},t),t}function wasSwitch(){if(arguments.length%2!=0)throw"Pairs of predicates expected for cases";(Array.isArray(arguments[0])?arguments[0]:[arguments[0]]).forEach(function(e){for(var t=!1,r=2;r<arguments.length;r+=2)arguments[r](e)&&arguments[r+1](e)&&(t=!0);t||arguments[1](e)})}function wasMapValueToRange(e,t,r,n,a){return n+(a-n)*(e-t)/(r-t)}function wasHexToRGB(e){e=e.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,function(e,t,r,n){return t+t+r+r+n+n});var t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);return t?{r:parseInt(t[1],16),g:parseInt(t[2],16),b:parseInt(t[3],16)}:null}function wasRGBToHex(e,t,r){return"#"+((1<<24)+(e<<16)+(t<<8)+r).toString(16).slice(1)}Array.prototype.product||(Array.prototype.product=function(e){return wasProduct(this,e)}),"function"==typeof jQuery&&$.extend({product:wasProduct}),Array.prototype.stride||(Array.prototype.stride=function(e){return wasStride(this,e)}),"function"==typeof jQuery&&$.extend({stride:wasStride}),Array.prototype.chunk||(Array.prototype.chunk=function(e,t){return wasChunk(this,t)}),"function"==typeof jQuery&&$.extend({chunk:wasChunk}),Array.prototype.equals||(Array.prototype.equals=function(e,t){return wasEquals(this,t)}),"function"==typeof jQuery&&$.extend({equals:wasEquals}),"undefined"!=typeof variable&&(module.exports.collections={product:wasProduct,stride:wasStride,chunk:wasChunk,equals:wasEquals}),"undefined"!=typeof variable&&(module.exports.formats={CSVToArray:wasCSVToArray,ArrayToCSV:wasArrayToCSV}),"undefined"!=typeof variable&&(module.exports.formats={KeyValueToObject:wasKeyValueToObject}),Array.prototype.switch||(Array.prototype.switch=function(){wasSwitch(this,arguments[0],arguments.slice(1))}),"function"==typeof jQuery&&$.extend({switch:wasSwitch}),"undefined"!=typeof variable&&(module.exports.lambda={switch:wasSwitch}),"undefined"!=typeof variable&&(module.exports.mathematics={MapValueToRange:wasMapValueToRange}),"undefined"!=typeof variable&&(module.exports.physics={HexToRGB:wasHexToRGB,RGBToHex:wasRGBToHex});
function wasProduct(e,t){for(var r=Math.max(e.length,t.length),o={},n=0;n<r;++n)o[e[n]]=t[n];return o}function wasStride(e,t){return e.filter(function(e,r){return r%t==0})}function wasChunk(e,t){return e.length?[e.slice(0,t)].concat(e.slice(t).wasChunk(t)):[]}function wasEquals(e,t){if(!t)return!1;if(e.length!==t.length)return!1;for(var r=0,o=e.length;r<o;r++)if(e[r]instanceof Array&&t[r]instanceof Array){if(!e[r].equals(t[r]))return!1}else if(e[r]!==t[r])return!1;return!0}function wasCSVToArray(e){var t=[],r=[],o="";do{var n=e.charAt(0);if(e=e.slice(1,e.length),","!==n)if('"'!==n||e.charAt(0)!==n)if('"'!==n)o+=n;else{if(r[r.length-1]!==n){r.push(n);continue}r.pop()}else o+=n,e=e.slice(1,e.length);else{if('"'!==r[r.length-1]){t.push(o),o="";continue}o+=n}}while(""!==e);return t.push(o),t}function wasArrayToCSV(e){for(var t=[],r=0;r<e.length;++r){var o=e[r].toString().replace('"','""');/"\s,\r\n/.test(o)?t[r]='"'+o+'"':t[r]=o}return t.join()}function wasKeyValueToObject(e){var t={};return e.reduce(function(e,t,r){return e[r=Math.floor(r/2)]||(e[r]=[]),e[r].push(t),e},[]).forEach(function(e,r,o){t[e[0]]=e[1]},t),t}function wasSwitch(){if(arguments.length%2!=0)throw"Pairs of predicates expected for cases";(Array.isArray(arguments[0])?arguments[0]:[arguments[0]]).forEach(function(e){for(var t=!1,r=2;r<arguments.length;r+=2)arguments[r](e)&&arguments[r+1](e)&&(t=!0);t||arguments[1](e)})}function wasMapValueToRange(e,t,r,o,n){return o+(n-o)*(e-t)/(r-t)}function wasHexToRGB(e){e=e.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,function(e,t,r,o){return t+t+r+r+o+o});var t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e);return t?{r:parseInt(t[1],16),g:parseInt(t[2],16),b:parseInt(t[3],16)}:null}function wasRGBToHex(e,t,r){return"#"+((1<<24)+(e<<16)+(t<<8)+r).toString(16).slice(1)}Array.prototype.product||(Array.prototype.product=function(e){return wasProduct(this,e)}),"function"==typeof jQuery&&$.extend({product:wasProduct}),Array.prototype.stride||(Array.prototype.stride=function(e){return wasStride(this,e)}),"function"==typeof jQuery&&$.extend({stride:wasStride}),Array.prototype.chunk||(Array.prototype.chunk=function(e,t){return wasChunk(this,t)}),"function"==typeof jQuery&&$.extend({chunk:wasChunk}),Array.prototype.equals||(Array.prototype.equals=function(e,t){return wasEquals(this,t)}),"function"==typeof jQuery&&$.extend({equals:wasEquals}),"undefined"!=typeof module&&void 0!==module.exports&&(module.exports.collections={product:wasProduct,stride:wasStride,chunk:wasChunk,equals:wasEquals}),"undefined"!=typeof module&&void 0!==module.exports&&(module.exports.formats={csv:{CSVToArray:wasCSVToArray,ArrayToCSV:wasArrayToCSV},kvp:{KeyValueToObject:wasKeyValueToObject}}),Array.prototype.switch||(Array.prototype.switch=function(){wasSwitch(this,arguments[0],arguments.slice(1))}),"function"==typeof jQuery&&$.extend({switch:wasSwitch}),"undefined"!=typeof module&&void 0!==module.exports&&(module.exports.lambda={switch:wasSwitch}),"undefined"!=typeof module&&void 0!==module.exports&&(module.exports.mathematics={MapValueToRange:wasMapValueToRange}),"undefined"!=typeof module&&void 0!==module.exports&&(module.exports.physics={HexToRGB:wasHexToRGB,RGBToHex:wasRGBToHex});
/trunk/lib/collections/arrays/arrays.js
@@ -111,7 +111,7 @@
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports.collections = {
product: wasProduct,
stride: wasStride,
/trunk/lib/formats/csv/csv.js
@@ -54,13 +54,3 @@
}
return csv.join();
}
 
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
module.exports.formats = {
CSVToArray: wasCSVToArray,
ArrayToCSV: wasArrayToCSV
};
}
/trunk/lib/formats/kvp/kvp.js
@@ -15,12 +15,3 @@
}, o);
return o;
}
 
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
module.exports.formats = {
KeyValueToObject: wasKeyValueToObject
};
}
/trunk/lib/lambda/aggregators.js
@@ -40,7 +40,7 @@
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports.lambda = {
switch: wasSwitch
};
/trunk/lib/mathematics/algebra.js
@@ -10,7 +10,7 @@
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports.mathematics = {
MapValueToRange: wasMapValueToRange
};
/trunk/lib/physics/colorimetry.js
@@ -33,7 +33,7 @@
/*************************************************************************/
/* Node.JS package export. */
/*************************************************************************/
if(typeof variable !== 'undefined') {
if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports.physics = {
HexToRGB: wasHexToRGB,
RGBToHex: wasRGBToHex
/trunk/package.json
@@ -44,5 +44,5 @@
"scripts": {
"test": "tap test/*.js"
},
"version": "1.0.3"
"version": "1.0.4"
}