@palett/fluo-matrix
Advanced tools
Comparing version 0.2.2 to 0.2.3
@@ -13,2 +13,3 @@ 'use strict'; | ||
var utilFluo = require('@palett/util-fluo'); | ||
var nullish = require('@typen/nullish'); | ||
var comparer = require('@aryth/comparer'); | ||
@@ -58,4 +59,2 @@ var rankMatrix = require('@aryth/rank-matrix'); | ||
const nullish = x => x === null || x === void 0; | ||
/** | ||
@@ -116,3 +115,3 @@ * | ||
y = vy && vy[i][j]; | ||
return !nullish(x) ? dx(x) : !nullish(y) ? dy(y) : dye; | ||
return !nullish.nullish(x) ? dx(x) : !nullish.nullish(y) ? dy(y) : dye; | ||
}; | ||
@@ -132,3 +131,3 @@ }; | ||
y = vy && vy[i][j]; | ||
return !nullish(x) ? (_n = n, dx(x)(_n)) : !nullish(y) ? (_n2 = n, dy(y)(_n2)) : (_n3 = n, dye(_n3)); | ||
return !nullish.nullish(x) ? (_n = n, dx(x)(_n)) : !nullish.nullish(y) ? (_n2 = n, dy(y)(_n2)) : (_n3 = n, dye(_n3)); | ||
}; | ||
@@ -135,0 +134,0 @@ }; |
@@ -9,2 +9,3 @@ import { POINTWISE, COLUMNWISE, ROWWISE } from '@vect/enum-matrix-directions'; | ||
import { presetToLeap, presetToFlat, fluo as fluo$1 } from '@palett/util-fluo'; | ||
import { nullish } from '@typen/nullish'; | ||
import { STR_ASC } from '@aryth/comparer'; | ||
@@ -54,4 +55,2 @@ import { rank } from '@aryth/rank-matrix'; | ||
const nullish = x => x === null || x === void 0; | ||
/** | ||
@@ -58,0 +57,0 @@ * |
{ | ||
"name": "@palett/fluo-matrix", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "A colorant to string", | ||
@@ -19,9 +19,10 @@ "main": "dist/index.cjs.js", | ||
"dependencies": { | ||
"@aryth/bound-matrix": "^0.2.2", | ||
"@aryth/comparer": "^0.2.2", | ||
"@aryth/rank-matrix": "^0.2.2", | ||
"@palett/fluo-vector": "^0.2.2", | ||
"@palett/presets": "^0.2.2", | ||
"@palett/projector": "^0.2.2", | ||
"@palett/util-fluo": "^0.2.2", | ||
"@aryth/bound-matrix": "^0.2.3", | ||
"@aryth/comparer": "^0.2.3", | ||
"@aryth/rank-matrix": "^0.2.3", | ||
"@palett/fluo-vector": "^0.2.3", | ||
"@palett/presets": "^0.2.3", | ||
"@palett/projector": "^0.2.3", | ||
"@palett/util-fluo": "^0.2.3", | ||
"@typen/nullish": "^0.1.4", | ||
"@typen/num-strict": "^0.1.4", | ||
@@ -50,3 +51,3 @@ "@vect/enum-matrix-directions": "^0.2.4", | ||
"homepage": "https://github.com/hoyeungw/palett/fluo-matrix#readme", | ||
"gitHead": "c5ca73b0c9287a3e2f5b0a49a23b2b94b9706c49" | ||
"gitHead": "e5ba2998003cb968ce280e1088a34bf878c09324" | ||
} |
@@ -0,0 +0,0 @@ ## @palett/fluo-matrix |
Sorry, the diff of this file is not supported yet
17892
12
+ Added@typen/nullish@^0.1.4
Updated@aryth/bound-matrix@^0.2.3
Updated@aryth/comparer@^0.2.3
Updated@aryth/rank-matrix@^0.2.3
Updated@palett/fluo-vector@^0.2.3
Updated@palett/presets@^0.2.3
Updated@palett/projector@^0.2.3
Updated@palett/util-fluo@^0.2.3