ant-design-vue/components/_util/callMoment.js

5 lines
150 B
JavaScript
Raw Normal View History

2018-03-13 22:40:13 +08:00
// https://github.com/moment/moment/issues/3650
2019-01-12 11:33:27 +08:00
export default function callMoment(moment, ...args) {
return (moment.default || moment)(...args);
2018-03-13 22:40:13 +08:00
}