@bbn/bbn 1.0.286 → 1.0.288
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 +1 -1
- package/dist/bbn.js.map +1 -1
- package/dist/fn/misc/roundDecimal.js +1 -1
- package/dist/fn/type/isHex.d.ts +8 -0
- package/dist/fn/type/isHex.js +11 -0
- package/dist/fn.d.ts +2 -0
- package/dist/fn.js +2 -0
- package/package.json +1 -1
package/dist/fn.d.ts
CHANGED
|
@@ -136,6 +136,7 @@ import isEmpty from './fn/type/isEmpty.js';
|
|
|
136
136
|
import isEvent from './fn/type/isEvent.js';
|
|
137
137
|
import isFocused from './fn/browser/isFocused.js';
|
|
138
138
|
import isFunction from './fn/type/isFunction.js';
|
|
139
|
+
import isHex from './fn/type/isHex.js';
|
|
139
140
|
import isHostname from './fn/type/isHostname.js';
|
|
140
141
|
import isInside from './fn/html/isInside.js';
|
|
141
142
|
import isInt from './fn/type/isInt.js';
|
|
@@ -373,6 +374,7 @@ declare const _default: {
|
|
|
373
374
|
isEvent: typeof isEvent;
|
|
374
375
|
isFocused: typeof isFocused;
|
|
375
376
|
isFunction: typeof isFunction;
|
|
377
|
+
isHex: typeof isHex;
|
|
376
378
|
isHostname: typeof isHostname;
|
|
377
379
|
isInside: typeof isInside;
|
|
378
380
|
isInt: typeof isInt;
|
package/dist/fn.js
CHANGED
|
@@ -136,6 +136,7 @@ import isEmpty from './fn/type/isEmpty.js';
|
|
|
136
136
|
import isEvent from './fn/type/isEvent.js';
|
|
137
137
|
import isFocused from './fn/browser/isFocused.js';
|
|
138
138
|
import isFunction from './fn/type/isFunction.js';
|
|
139
|
+
import isHex from './fn/type/isHex.js';
|
|
139
140
|
import isHostname from './fn/type/isHostname.js';
|
|
140
141
|
import isInside from './fn/html/isInside.js';
|
|
141
142
|
import isInt from './fn/type/isInt.js';
|
|
@@ -373,6 +374,7 @@ export default {
|
|
|
373
374
|
isEvent: isEvent,
|
|
374
375
|
isFocused: isFocused,
|
|
375
376
|
isFunction: isFunction,
|
|
377
|
+
isHex: isHex,
|
|
376
378
|
isHostname: isHostname,
|
|
377
379
|
isInside: isInside,
|
|
378
380
|
isInt: isInt,
|