aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/bower_components/moment/src/lib/duration/clone.js
blob: 56008d12e026819ffd5c8f88183267c7539bc214 (plain) (blame)
1
2
3
4
5
6
import { createDuration } from './create';

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