@schematize/refs 0.2.0 → 0.2.3

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.
Files changed (46) hide show
  1. package/js/Array.prototype.at.call.mjs +2 -2
  2. package/js/Array.prototype.concat.call.mjs +2 -2
  3. package/js/Array.prototype.copyWithin.call.mjs +2 -2
  4. package/js/Array.prototype.entries.call.mjs +2 -2
  5. package/js/Array.prototype.every.call.mjs +2 -2
  6. package/js/Array.prototype.fill.call.mjs +2 -2
  7. package/js/Array.prototype.filter.call.mjs +2 -2
  8. package/js/Array.prototype.find.call.mjs +2 -2
  9. package/js/Array.prototype.findIndex.call.mjs +2 -2
  10. package/js/Array.prototype.findLast.call.mjs +2 -2
  11. package/js/Array.prototype.findLastIndex.call.mjs +2 -2
  12. package/js/Array.prototype.flat.call.mjs +2 -2
  13. package/js/Array.prototype.flatMap.call.mjs +2 -2
  14. package/js/Array.prototype.forEach.call.mjs +2 -2
  15. package/js/Array.prototype.includes.call.mjs +2 -2
  16. package/js/Array.prototype.indexOf.call.mjs +2 -2
  17. package/js/Array.prototype.join.call.mjs +2 -2
  18. package/js/Array.prototype.keys.call.mjs +2 -2
  19. package/js/Array.prototype.lastIndexOf.call.mjs +2 -2
  20. package/js/Array.prototype.map.call.mjs +2 -2
  21. package/js/Array.prototype.pop.call.mjs +2 -2
  22. package/js/Array.prototype.push.call.mjs +2 -2
  23. package/js/Array.prototype.reduce.call.mjs +2 -2
  24. package/js/Array.prototype.reduceRight.call.mjs +2 -2
  25. package/js/Array.prototype.reverse.call.mjs +2 -2
  26. package/js/Array.prototype.shift.call.mjs +2 -2
  27. package/js/Array.prototype.slice.call.mjs +2 -2
  28. package/js/Array.prototype.some.call.mjs +2 -2
  29. package/js/Array.prototype.sort.call.mjs +2 -2
  30. package/js/Array.prototype.splice.call.mjs +2 -2
  31. package/js/Array.prototype.toLocaleString.call.mjs +2 -2
  32. package/js/Array.prototype.toString.call.mjs +2 -2
  33. package/js/Array.prototype.unshift.call.mjs +2 -2
  34. package/js/Array.prototype.values.call.mjs +2 -2
  35. package/js/Object.prototype.hasOwnProperty.call.mjs +2 -2
  36. package/js/Object.prototype.isPrototypeOf.call.mjs +2 -2
  37. package/js/Object.prototype.propertyIsEnumerable.call.mjs +2 -2
  38. package/js/Object.prototype.toLocaleString.call.mjs +2 -2
  39. package/js/Object.prototype.toString.call.mjs +2 -2
  40. package/js/Object.prototype.valueOf.call.mjs +2 -2
  41. package/package.json +9 -2
  42. package/.eslintrc.json +0 -39
  43. package/isNaN.mjs +0 -4
  44. package/js/Function.prototype.call.bind.mjs +0 -6
  45. package/test.browser.mjs +0 -14
  46. package/test.mjs +0 -118
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_at_call = _Function_prototype_call_bind(_Array_prototype.at);
4
+ const _Array_prototype_at_call = _Function_prototype_call.bind(_Array_prototype.at);
5
5
 
6
6
  export default _Array_prototype_at_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_concat_call = _Function_prototype_call_bind(_Array_prototype.concat);
4
+ const _Array_prototype_concat_call = _Function_prototype_call.bind(_Array_prototype.concat);
5
5
 
6
6
  export default _Array_prototype_concat_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_copyWithin_call = _Function_prototype_call_bind(_Array_prototype.copyWithin);
4
+ const _Array_prototype_copyWithin_call = _Function_prototype_call.bind(_Array_prototype.copyWithin);
5
5
 
6
6
  export default _Array_prototype_copyWithin_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_entries_call = _Function_prototype_call_bind(_Array_prototype.entries);
4
+ const _Array_prototype_entries_call = _Function_prototype_call.bind(_Array_prototype.entries);
5
5
 
6
6
  export default _Array_prototype_entries_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_every_call = _Function_prototype_call_bind(_Array_prototype.every);
4
+ const _Array_prototype_every_call = _Function_prototype_call.bind(_Array_prototype.every);
5
5
 
6
6
  export default _Array_prototype_every_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_fill_call = _Function_prototype_call_bind(_Array_prototype.fill);
4
+ const _Array_prototype_fill_call = _Function_prototype_call.bind(_Array_prototype.fill);
5
5
 
6
6
  export default _Array_prototype_fill_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_filter_call = _Function_prototype_call_bind(_Array_prototype.filter);
4
+ const _Array_prototype_filter_call = _Function_prototype_call.bind(_Array_prototype.filter);
5
5
 
6
6
  export default _Array_prototype_filter_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_find_call = _Function_prototype_call_bind(_Array_prototype.find);
4
+ const _Array_prototype_find_call = _Function_prototype_call.bind(_Array_prototype.find);
5
5
 
6
6
  export default _Array_prototype_find_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_findIndex_call = _Function_prototype_call_bind(_Array_prototype.findIndex);
4
+ const _Array_prototype_findIndex_call = _Function_prototype_call.bind(_Array_prototype.findIndex);
5
5
 
6
6
  export default _Array_prototype_findIndex_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_findLast_call = _Function_prototype_call_bind(_Array_prototype.findLast);
4
+ const _Array_prototype_findLast_call = _Function_prototype_call.bind(_Array_prototype.findLast);
5
5
 
6
6
  export default _Array_prototype_findLast_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_findLastIndex_call = _Function_prototype_call_bind(_Array_prototype.findLastIndex);
4
+ const _Array_prototype_findLastIndex_call = _Function_prototype_call.bind(_Array_prototype.findLastIndex);
5
5
 
6
6
  export default _Array_prototype_findLastIndex_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_flat_call = _Function_prototype_call_bind(_Array_prototype.flat);
4
+ const _Array_prototype_flat_call = _Function_prototype_call.bind(_Array_prototype.flat);
5
5
 
6
6
  export default _Array_prototype_flat_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_flatMap_call = _Function_prototype_call_bind(_Array_prototype.flatMap);
4
+ const _Array_prototype_flatMap_call = _Function_prototype_call.bind(_Array_prototype.flatMap);
5
5
 
6
6
  export default _Array_prototype_flatMap_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_forEach_call = _Function_prototype_call_bind(_Array_prototype.forEach);
4
+ const _Array_prototype_forEach_call = _Function_prototype_call.bind(_Array_prototype.forEach);
5
5
 
6
6
  export default _Array_prototype_forEach_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_includes_call = _Function_prototype_call_bind(_Array_prototype.includes);
4
+ const _Array_prototype_includes_call = _Function_prototype_call.bind(_Array_prototype.includes);
5
5
 
6
6
  export default _Array_prototype_includes_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_indexOf_call = _Function_prototype_call_bind(_Array_prototype.indexOf);
4
+ const _Array_prototype_indexOf_call = _Function_prototype_call.bind(_Array_prototype.indexOf);
5
5
 
6
6
  export default _Array_prototype_indexOf_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_join_call = _Function_prototype_call_bind(_Array_prototype.join);
4
+ const _Array_prototype_join_call = _Function_prototype_call.bind(_Array_prototype.join);
5
5
 
6
6
  export default _Array_prototype_join_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_keys_call = _Function_prototype_call_bind(_Array_prototype.keys);
4
+ const _Array_prototype_keys_call = _Function_prototype_call.bind(_Array_prototype.keys);
5
5
 
6
6
  export default _Array_prototype_keys_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_lastIndexOf_call = _Function_prototype_call_bind(_Array_prototype.lastIndexOf);
4
+ const _Array_prototype_lastIndexOf_call = _Function_prototype_call.bind(_Array_prototype.lastIndexOf);
5
5
 
6
6
  export default _Array_prototype_lastIndexOf_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_map_call = _Function_prototype_call_bind(_Array_prototype.map);
4
+ const _Array_prototype_map_call = _Function_prototype_call.bind(_Array_prototype.map);
5
5
 
6
6
  export default _Array_prototype_map_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_pop_call = _Function_prototype_call_bind(_Array_prototype.pop);
4
+ const _Array_prototype_pop_call = _Function_prototype_call.bind(_Array_prototype.pop);
5
5
 
6
6
  export default _Array_prototype_pop_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_push_call = _Function_prototype_call_bind(_Array_prototype.push);
4
+ const _Array_prototype_push_call = _Function_prototype_call.bind(_Array_prototype.push);
5
5
 
6
6
  export default _Array_prototype_push_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_reduce_call = _Function_prototype_call_bind(_Array_prototype.reduce);
4
+ const _Array_prototype_reduce_call = _Function_prototype_call.bind(_Array_prototype.reduce);
5
5
 
6
6
  export default _Array_prototype_reduce_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_reduceRight_call = _Function_prototype_call_bind(_Array_prototype.reduceRight);
4
+ const _Array_prototype_reduceRight_call = _Function_prototype_call.bind(_Array_prototype.reduceRight);
5
5
 
6
6
  export default _Array_prototype_reduceRight_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_reverse_call = _Function_prototype_call_bind(_Array_prototype.reverse);
4
+ const _Array_prototype_reverse_call = _Function_prototype_call.bind(_Array_prototype.reverse);
5
5
 
6
6
  export default _Array_prototype_reverse_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_shift_call = _Function_prototype_call_bind(_Array_prototype.shift);
4
+ const _Array_prototype_shift_call = _Function_prototype_call.bind(_Array_prototype.shift);
5
5
 
6
6
  export default _Array_prototype_shift_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_slice_call = _Function_prototype_call_bind(_Array_prototype.slice);
4
+ const _Array_prototype_slice_call = _Function_prototype_call.bind(_Array_prototype.slice);
5
5
 
6
6
  export default _Array_prototype_slice_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_some_call = _Function_prototype_call_bind(_Array_prototype.some);
4
+ const _Array_prototype_some_call = _Function_prototype_call.bind(_Array_prototype.some);
5
5
 
6
6
  export default _Array_prototype_some_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_sort_call = _Function_prototype_call_bind(_Array_prototype.sort);
4
+ const _Array_prototype_sort_call = _Function_prototype_call.bind(_Array_prototype.sort);
5
5
 
6
6
  export default _Array_prototype_sort_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_splice_call = _Function_prototype_call_bind(_Array_prototype.splice);
4
+ const _Array_prototype_splice_call = _Function_prototype_call.bind(_Array_prototype.splice);
5
5
 
6
6
  export default _Array_prototype_splice_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_toLocaleString_call = _Function_prototype_call_bind(_Array_prototype.toLocaleString);
4
+ const _Array_prototype_toLocaleString_call = _Function_prototype_call.bind(_Array_prototype.toLocaleString);
5
5
 
6
6
  export default _Array_prototype_toLocaleString_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_toString_call = _Function_prototype_call_bind(_Array_prototype.toString);
4
+ const _Array_prototype_toString_call = _Function_prototype_call.bind(_Array_prototype.toString);
5
5
 
6
6
  export default _Array_prototype_toString_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_unshift_call = _Function_prototype_call_bind(_Array_prototype.unshift);
4
+ const _Array_prototype_unshift_call = _Function_prototype_call.bind(_Array_prototype.unshift);
5
5
 
6
6
  export default _Array_prototype_unshift_call;
@@ -1,6 +1,6 @@
1
1
  import _Array_prototype from './Array.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Array_prototype_values_call = _Function_prototype_call_bind(_Array_prototype.values);
4
+ const _Array_prototype_values_call = _Function_prototype_call.bind(_Array_prototype.values);
5
5
 
6
6
  export default _Array_prototype_values_call;
@@ -1,6 +1,6 @@
1
1
  import _Object_prototype from './Object.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Object_prototype_hasOwnProperty_call = _Function_prototype_call_bind(_Object_prototype.hasOwnProperty);
4
+ const _Object_prototype_hasOwnProperty_call = _Function_prototype_call.bind(_Object_prototype.hasOwnProperty);
5
5
 
6
6
  export default _Object_prototype_hasOwnProperty_call;
@@ -1,6 +1,6 @@
1
1
  import _Object_prototype from './Object.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Object_prototype_isPrototypeOf_call = _Function_prototype_call_bind(_Object_prototype.isPrototypeOf);
4
+ const _Object_prototype_isPrototypeOf_call = _Function_prototype_call.bind(_Object_prototype.isPrototypeOf);
5
5
 
6
6
  export default _Object_prototype_isPrototypeOf_call;
@@ -1,6 +1,6 @@
1
1
  import _Object_prototype from './Object.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Object_prototype_propertyIsEnumerable_call = _Function_prototype_call_bind(_Object_prototype.propertyIsEnumerable);
4
+ const _Object_prototype_propertyIsEnumerable_call = _Function_prototype_call.bind(_Object_prototype.propertyIsEnumerable);
5
5
 
6
6
  export default _Object_prototype_propertyIsEnumerable_call;
@@ -1,6 +1,6 @@
1
1
  import _Object_prototype from './Object.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Object_prototype_toLocaleString_call = _Function_prototype_call_bind(_Object_prototype.toLocaleString);
4
+ const _Object_prototype_toLocaleString_call = _Function_prototype_call.bind(_Object_prototype.toLocaleString);
5
5
 
6
6
  export default _Object_prototype_toLocaleString_call;
@@ -1,6 +1,6 @@
1
1
  import _Object_prototype from './Object.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Object_prototype_toString_call = _Function_prototype_call_bind(_Object_prototype.toString);
4
+ const _Object_prototype_toString_call = _Function_prototype_call.bind(_Object_prototype.toString);
5
5
 
6
6
  export default _Object_prototype_toString_call;
@@ -1,6 +1,6 @@
1
1
  import _Object_prototype from './Object.prototype.mjs';
2
- import _Function_prototype_call_bind from './Function.prototype.call.bind.mjs';
2
+ import _Function_prototype_call from './Function.prototype.call.mjs';
3
3
 
4
- const _Object_prototype_valueOf_call = _Function_prototype_call_bind(_Object_prototype.valueOf);
4
+ const _Object_prototype_valueOf_call = _Function_prototype_call.bind(_Object_prototype.valueOf);
5
5
 
6
6
  export default _Object_prototype_valueOf_call;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schematize/refs",
3
- "version": "0.2.0",
3
+ "version": "0.2.3",
4
4
  "description": "A list of references to built-ins, native objects, etc.",
5
5
  "author": "Benjamin Bytheway",
6
6
  "license": "MIT",
@@ -11,13 +11,20 @@
11
11
  "./browser/*": "./browser/*",
12
12
  "./js/*": "./js/*"
13
13
  },
14
+ "files": [
15
+ "package.json",
16
+ "README.md",
17
+ "LICENSE",
18
+ "browser/*",
19
+ "js/*"
20
+ ],
14
21
  "scripts": {
15
22
  "test": "npm run eslint && npm run test-js",
16
23
  "eslint": "./node_modules/.bin/eslint . --ext js,mjs",
17
24
  "test-all": "node --experimental-modules --es-module-specifier-resolution=node main.mjs",
18
25
  "test-browser": "node --experimental-modules --es-module-specifier-resolution=node test.browser.mjs",
19
26
  "test-js": "node --experimental-modules --es-module-specifier-resolution=node test.js.mjs",
20
- "publish": "npm run publish-npm && npm run publish-github",
27
+ "pub": "npm run publish-npm && npm run publish-github",
21
28
  "publish-npm": "npm publish --registry=https://registry.npmjs.org --access=public",
22
29
  "publish-github": "npm publish --registry=https://npm.pkg.github.com --access=public"
23
30
  },
package/.eslintrc.json DELETED
@@ -1,39 +0,0 @@
1
- {
2
- "env": {
3
- "browser": true,
4
- "node": true,
5
- "es2020": true
6
- },
7
- "extends": "eslint:recommended",
8
- "parserOptions": {
9
- "ecmaVersion": 2020,
10
- "sourceType": "module"
11
- },
12
- "rules": {
13
- "indent": [
14
- "error",
15
- 2,
16
- {
17
- "MemberExpression": "off",
18
- "ignoredNodes": [
19
- "ConditionalExpression"
20
- ]
21
- }
22
- ],
23
- "linebreak-style": [
24
- "error",
25
- "unix"
26
- ],
27
- "quotes": [
28
- "error",
29
- "single",
30
- {
31
- "allowTemplateLiterals": true
32
- }
33
- ],
34
- "semi": [
35
- "error",
36
- "always"
37
- ]
38
- }
39
- }
package/isNaN.mjs DELETED
@@ -1,4 +0,0 @@
1
-
2
- const _isNaN = isNaN;
3
-
4
- export default _isNaN;
@@ -1,6 +0,0 @@
1
-
2
- import _Function_prototype_call from './Function.prototype.call.mjs';
3
-
4
- const _Function_prototype_call_bind = _Function_prototype_call.bind;
5
-
6
- export default _Function_prototype_call_bind;
package/test.browser.mjs DELETED
@@ -1,14 +0,0 @@
1
-
2
- /* eslint-disable no-unused-vars */
3
-
4
- // browser
5
- import cancelAnimationFrame from './browser/cancelAnimationFrame.mjs';
6
- import document from './browser/document.mjs';
7
- import _document_body from './browser/document.body.mjs';
8
- import _document_head from './browser/document.head.mjs';
9
- import requestAnimationFrame from './browser/requestAnimationFrame.mjs';
10
- import window from './browser/window.mjs';
11
- import _window_location from './browser/window.location.mjs';
12
- import _window_history from './browser/window.history.mjs';
13
-
14
- /* eslint-enable no-unused-vars */
package/test.mjs DELETED
@@ -1,118 +0,0 @@
1
-
2
- /* eslint-disable no-unused-vars */
3
-
4
- // js
5
- import _Array_isArray from './js/Array.isArray.mjs';
6
- import _Array from './js/Array.mjs';
7
- import _Array_prototype from './js/Array.prototype.mjs';
8
- import _AsyncFunction from './js/AsyncFunction.mjs';
9
- import _AsyncIterator from './js/AsyncIterator.mjs';
10
- import _BigInt from './js/BigInt.mjs';
11
- import _Boolean from './js/Boolean.mjs';
12
- import _Date from './js/Date.mjs';
13
- import _Error from './js/Error.mjs';
14
- import _Function from './js/Function.mjs';
15
- import _Function_prototype from './js/Function.prototype.mjs';
16
- import _Generator from './js/Generator.mjs';
17
- import _GeneratorFunction from './js/GeneratorFunction.mjs';
18
- import _Infinity from './js/Infinity.mjs';
19
- import _Intl_Collator from './js/Intl.Collator.mjs';
20
- import _Intl_DateTimeFormat from './js/Intl.DateTimeFormat.mjs';
21
- import _Intl_ListFormat from './js/Intl.ListFormat.mjs';
22
- import _Intl_Locale from './js/Intl.Locale.mjs';
23
- import _Intl_NumberFormat from './js/Intl.NumberFormat.mjs';
24
- import _Intl_PluralRules from './js/Intl.PluralRules.mjs';
25
- import _Intl_RelativeTimeFormat from './js/Intl.RelativeTimeFormat.mjs';
26
- import _Intl from './js/Intl.mjs';
27
- import _Iterator from './js/Iterator.mjs';
28
- import _JSON from './js/JSON.mjs';
29
- import _JSON_parse from './js/JSON.parse.mjs';
30
- import _JSON_stringify from './js/JSON.stringify.mjs';
31
- import _Map from './js/Map.mjs';
32
- import _Math_E from './js/Math.E.mjs';
33
- import _Math_LN10 from './js/Math.LN10.mjs';
34
- import _Math_LN2 from './js/Math.LN2.mjs';
35
- import _Math_LOG10E from './js/Math.LOG10E.mjs';
36
- import _Math_LOG2E from './js/Math.LOG2E.mjs';
37
- import _Math_PI from './js/Math.PI.mjs';
38
- import _Math_SQRT1_2 from './js/Math.SQRT1_2.mjs';
39
- import _Math_SQRT2 from './js/Math.SQRT2.mjs';
40
- import _Math_abs from './js/Math.abs.mjs';
41
- import _Math_acos from './js/Math.acos.mjs';
42
- import _Math_acosh from './js/Math.acosh.mjs';
43
- import _Math_asin from './js/Math.asin.mjs';
44
- import _Math_asinh from './js/Math.asinh.mjs';
45
- import _Math_atan from './js/Math.atan.mjs';
46
- import _Math_atan2 from './js/Math.atan2.mjs';
47
- import _Math_atanh from './js/Math.atanh.mjs';
48
- import _Math_cbrt from './js/Math.cbrt.mjs';
49
- import _Math_ceil from './js/Math.ceil.mjs';
50
- import _Math_clz32 from './js/Math.clz32.mjs';
51
- import _Math_cos from './js/Math.cos.mjs';
52
- import _Math_cosh from './js/Math.cosh.mjs';
53
- import _Math_exp from './js/Math.exp.mjs';
54
- import _Math_expm1 from './js/Math.expm1.mjs';
55
- import _Math_floor from './js/Math.floor.mjs';
56
- import _Math_fround from './js/Math.fround.mjs';
57
- import _Math_hypot from './js/Math.hypot.mjs';
58
- import _Math_imul from './js/Math.imul.mjs';
59
- import _Math_log from './js/Math.log.mjs';
60
- import _Math_log10 from './js/Math.log10.mjs';
61
- import _Math_log1p from './js/Math.log1p.mjs';
62
- import _Math_log2 from './js/Math.log2.mjs';
63
- import _Math_max from './js/Math.max.mjs';
64
- import _Math_min from './js/Math.min.mjs';
65
- import _Math from './js/Math.mjs';
66
- import _Math_pow from './js/Math.pow.mjs';
67
- import _Math_random from './js/Math.random.mjs';
68
- import _Math_round from './js/Math.round.mjs';
69
- import _Math_sign from './js/Math.sign.mjs';
70
- import _Math_sin from './js/Math.sin.mjs';
71
- import _Math_sinh from './js/Math.sinh.mjs';
72
- import _Math_sqrt from './js/Math.sqrt.mjs';
73
- import _Math_tanh from './js/Math.tanh.mjs';
74
- import _Math_trunc from './js/Math.trunc.mjs';
75
- import _NaN from './js/NaN.mjs';
76
- import _Number from './js/Number.mjs';
77
- import _Object_assign from './js/Object.assign.mjs';
78
- import _Object_create from './js/Object.create.mjs';
79
- import _Object_defineProperty from './js/Object.defineProperty.mjs';
80
- import _Object_getOwnPropertyDescriptor from './js/Object.getOwnPropertyDescriptor.mjs';
81
- import _Object_getPrototypeOf from './js/Object.getPrototypeOf.mjs';
82
- import _Object_keys from './js/Object.keys.mjs';
83
- import _Object from './js/Object.mjs';
84
- import _Object_prototype from './js/Object.prototype.mjs';
85
- import _Object_setPrototypeOf from './js/Object.setPrototypeOf.mjs';
86
- import _Object_values from './js/Object.values.mjs';
87
- import _Promise_all from './js/Promise.all.mjs';
88
- import _Promise_allSettled from './js/Promise.allSettled.mjs';
89
- import _Promise from './js/Promise.mjs';
90
- import _Promise_race from './js/Promise.race.mjs';
91
- import _Promise_reject from './js/Promise.reject.mjs';
92
- import _Promise_resolve from './js/Promise.resolve.mjs';
93
- import _Proxy from './js/Proxy.mjs';
94
- import _Reflect from './js/Reflect.mjs';
95
- import _RegExp from './js/RegExp.mjs';
96
- import _Set from './js/Set.mjs';
97
- import _String from './js/String.mjs';
98
- import _Symbol_for from './js/Symbol.for.mjs';
99
- import _Symbol from './js/Symbol.mjs';
100
- import _TypeError from './js/TypeError.mjs';
101
- import _WeakMap from './js/WeakMap.mjs';
102
- import _WeakSet from './js/WeakSet.mjs';
103
- import _clearInterval from './js/clearInterval.mjs';
104
- import _clearTimeout from './js/clearTimeout.mjs';
105
- import _decodeURI from './js/decodeURI.mjs';
106
- import _decodeURIComponent from './js/decodeURIComponent.mjs';
107
- import _encodeURI from './js/encodeURI.mjs';
108
- import _encodeURIComponent from './js/encodeURIComponent.mjs';
109
- import _isFinite from './js/isFinite.mjs';
110
- import _null from './js/null.mjs';
111
- import _parseFloat from './js/parseFloat.mjs';
112
- import _parseInt from './js/parseInt.mjs';
113
- import _queueMicrotask from './js/queueMicrotask.mjs';
114
- import _setInterval from './js/setInterval.mjs';
115
- import _setTimeout from './js/setTimeout.mjs';
116
- import _undefined from './js/undefined.mjs';
117
-
118
- /* eslint-enable no-unused-vars */