mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-23 08:47:50 +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())
|
|
}
|