mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-13 08:27:49 +08:00
5 lines
157 B
TypeScript
5 lines
157 B
TypeScript
export default function getAllMethodNames(obj: Object): string[] {
|
|
return Reflect.ownKeys(Reflect.getPrototypeOf(obj))
|
|
.map(name => name.toString())
|
|
}
|