mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
5 lines
162 B
TypeScript
5 lines
162 B
TypeScript
// https://github.com/moment/moment/issues/3650
|
|
export default function callMoment(moment: any, ...args: any[]) {
|
|
return (moment.default || moment)(...args);
|
|
}
|