add keys, values, and entries fn

This commit is contained in:
Rowan 2025-04-17 19:42:55 -05:00
parent 13cf60abdb
commit c460cfe714

View file

@ -0,0 +1,6 @@
import { dispatch } from './fantasy-land.js'
export const keys = dispatch(['keys'], Object.keys)
export const values = dispatch(['values'], Object.values)
export const entires = dispatch(['entries'], Object.entries)