4 lines
65 B
JavaScript
4 lines
65 B
JavaScript
|
|
export function keysOf(value) {
|
||
|
|
return Object.keys(value);
|
||
|
|
}
|