Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
shashik-edgz committed Oct 28, 2021
1 parent 972f24e commit 5864b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export class Sakota<T extends object> implements ProxyHandler<T> {
/**
* Proxy handler trap for `Reflect.ownKeys()`.
*/
public ownKeys(obj: any): (string | symbol)[] {
public ownKeys(obj: any): (string | symbol)[] {
// FIXME: need to figure out why this return (string | number | symbol)[]
// which is not the same as the return type of ES2015 Reflect.ownKeys.
const keys = Reflect.ownKeys(obj) as (string | symbol)[];
Expand Down

0 comments on commit 5864b67

Please sign in to comment.