ant-design/components/_util/callMoment.tsx

5 lines
162 B
TypeScript
Raw Normal View History

// https://github.com/moment/moment/issues/3650
2017-11-22 12:06:49 +08:00
export default function callMoment(moment: any, ...args: any[]) {
return (moment.default || moment)(...args);
}