Use === in without.ts
This commit is contained in:
parent
c1d7077061
commit
5c22f44930
@ -3,8 +3,7 @@ export function without<T, R extends Record<string, T>, K extends keyof R>(
|
||||
key: K,
|
||||
): Pick<R, Exclude<keyof R, K>> {
|
||||
return Object.keys(items).reduce((obj, k) => {
|
||||
// tslint:disable-next-line
|
||||
if (key == k) {
|
||||
if (key === k) {
|
||||
return obj
|
||||
}
|
||||
(obj as any)[k] = items[k]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user