@bbn/bbn 1.0.178 → 1.0.179
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bbn.js +118 -115
- package/dist/bbn.js.map +1 -1
- package/dist/fn.d.ts +1 -0
- package/dist/fn.js +2 -0
- package/package.json +1 -1
package/dist/fn.d.ts
CHANGED
|
@@ -184,6 +184,7 @@ declare const fn: {
|
|
|
184
184
|
money: (val: number, kilo?: boolean, currency?: string, novalue?: string | false, decimal?: string, thousands?: string, precision?: number) => string;
|
|
185
185
|
move: (arr: any[], fromIndex: number, toIndex: number) => any[];
|
|
186
186
|
multiorder: (arr: object[], orders: any) => object[];
|
|
187
|
+
mutateArray: any;
|
|
187
188
|
nl2br: (st: any, keepNl: any) => string;
|
|
188
189
|
numProperties: (obj: object) => number;
|
|
189
190
|
objectToFormData: (obj: any, key?: string, ignoreList?: any) => FormData;
|
package/dist/fn.js
CHANGED
|
@@ -169,6 +169,7 @@ import { md5 } from './fn/string/md5.js';
|
|
|
169
169
|
import { money } from './fn/misc/money.js';
|
|
170
170
|
import { move } from './fn/object/move.js';
|
|
171
171
|
import { multiorder } from './fn/object/multiorder.js';
|
|
172
|
+
import { mutateArray } from './fn/object/mutateArray.js';
|
|
172
173
|
import { nl2br } from './fn/string/nl2br.js';
|
|
173
174
|
import { numProperties } from './fn/object/numProperties.js';
|
|
174
175
|
import { objectToFormData } from './fn/form/objectToFormData.js';
|
|
@@ -398,6 +399,7 @@ var fn = {
|
|
|
398
399
|
money: money,
|
|
399
400
|
move: move,
|
|
400
401
|
multiorder: multiorder,
|
|
402
|
+
mutateArray: mutateArray,
|
|
401
403
|
nl2br: nl2br,
|
|
402
404
|
numProperties: numProperties,
|
|
403
405
|
objectToFormData: objectToFormData,
|