VisionFTF / express-admin / node_modules / moment / src / lib / duration / clone.js
clone.js
Raw
import { createDuration } from './create';

export function clone() {
    return createDuration(this);
}