tiny-essentials 1.18.0 → 1.18.1

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.
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var objFilter = require('../../v1/basics/objFilter.cjs');
3
+ var objChecker = require('../../v1/basics/objChecker.cjs');
4
4
 
5
5
 
6
6
 
7
- module.exports = objFilter.countObj;
7
+ module.exports = objChecker.countObj;
@@ -1,3 +1,3 @@
1
1
  export default countObj;
2
- import { countObj } from '../../v1/basics/objFilter.mjs';
2
+ import { countObj } from '../../v1/basics/objChecker.mjs';
3
3
  //# sourceMappingURL=countObj.d.mts.map
@@ -1,2 +1,2 @@
1
- import { countObj } from '../../v1/basics/objFilter.mjs';
1
+ import { countObj } from '../../v1/basics/objChecker.mjs';
2
2
  export default countObj;
@@ -1,5 +1,6 @@
1
1
  'use strict';
2
2
 
3
+ var objChecker = require('../v1/basics/objChecker.cjs');
3
4
  var objFilter = require('../v1/basics/objFilter.cjs');
4
5
  var super_string_filter = require('./get/super_string_filter.cjs');
5
6
  var auth = require('./http/auth.cjs');
@@ -50,7 +51,7 @@ const legacyModules = {
50
51
  getObjType: objFilter.objType,
51
52
 
52
53
  // Count Obj
53
- countObj: objFilter.countObj,
54
+ countObj: objChecker.countObj,
54
55
 
55
56
  // HTTP Auth Generator
56
57
  httpAuth: auth,