DevHelper
DevHelper 添加了一些辅助功能,以便在使用 Day.js 时为你提供更多提示和警告。
¥DevHelper adds some helper function to give you more hints and warnings while using Day.js.
请注意,你可以将 process.env.NODE_ENV
设置为 production
以在生产环境中禁用 DevHelper。如果你启用了像 UglifyJS 这样的 JavaScript 压缩器,它可以自动从你的生产包中删除该插件以节省一些字节。
¥Note, you can set process.env.NODE_ENV
to production
to disable the DevHelper in your production environment. And if you have enabled a JavaScript minifier like UglifyJS, it can remove the plugin from your production bundle automatically to save some bytes.
var devHelper = require("dayjs/plugin/devHelper");
// import devHelper from 'dayjs/plugin/devHelper' // ES 2015
dayjs.extend(devHelper);
你也可以根据需要自行加载此插件。
¥You can also load this plugin on demand yourself.
if (isInDevelopment) {
// load DevHelper plugin like above
}