ut2 1.1.1 → 1.1.2

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/ut2.js CHANGED
@@ -262,7 +262,7 @@
262
262
  var numberIsSafeInteger = Number.isSafeInteger;
263
263
  var objectGetOwnPropertySymbols = Object.getOwnPropertySymbols;
264
264
  var arrayAt = Array.prototype.at;
265
- var VERSION = "1.1.1";
265
+ var VERSION = "1.1.2";
266
266
 
267
267
  function isFunction(value) {
268
268
  if (!isObject(value)) {
@@ -1281,7 +1281,7 @@
1281
1281
  }
1282
1282
 
1283
1283
  function conformsTo(object, source) {
1284
- var props = Object.keys(source);
1284
+ var props = allKeys(source);
1285
1285
  var length = props.length;
1286
1286
  if (object == null) {
1287
1287
  return !length;