文件名称:redefine-function:重新定义功能
文件大小:2KB
文件格式:ZIP
更新时间:2024-05-23 02:54:28
JavaScript
重新定义功能 重新定义功能 安装 $ npm install --save redefine-function 用法 var redefineFunction = require ( "redefine-function" ) var Greetings = { hello : function ( ) { return "Hi there." } } console . log ( Greetings . hello ( ) ) // Hi there redefineFunction ( this , "Greetings.hello" , function ( ) { return "Don't worry about it" } ) console . log ( Greetings . hello ( ) ) // Don't worry about it
【文件预览】:
redefine-function-master
----index.js(440B)
----test.js(496B)
----package.json(293B)
----.gitignore(13B)
----README.md(2KB)