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

5 lines
150 B
JavaScript
Raw Normal View History

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