Files
2026-04-13 08:19:53 +08:00

11 lines
215 B
JavaScript

import { keys } from './keys.mjs';
function functions(object) {
if (object == null) {
return [];
}
return keys(object).filter(key => typeof object[key] === 'function');
}
export { functions };