@powfix/core-js 0.26.0 → 0.26.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,5 +1,5 @@
1
- type Without<T, K> = {
2
- [P in Exclude<keyof T, K>]?: never;
1
+ type Without<T, U = never> = {
2
+ [P in keyof T]?: U;
3
3
  };
4
- export type XOR<T, U> = ((T & Without<U, keyof T>) | (U & Without<T, keyof U>));
4
+ export type XOR<T, U> = (Without<T> & U) | (Without<U> & T);
5
5
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powfix/core-js",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "core package",
5
5
  "author": "Kwon Kyung-Min <powfix@gmail.com>",
6
6
  "private": false,