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

15 lines
318 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const keys = require('./keys.js');
function functions(object) {
if (object == null) {
return [];
}
return keys.keys(object).filter(key => typeof object[key] === 'function');
}
exports.functions = functions;