Sha256: 35daa9863f93e2324dd0abd48308d1ccb0290aa3e87de6a905407f2c549d6e94

Contents?: true

Size: 842 Bytes

Versions: 19

Compression:

Stored size: 842 Bytes

Contents

export var defaultRelativeTime = {
    future: 'in %s',
    past: '%s ago',
    s: 'a few seconds',
    ss: '%d seconds',
    m: 'a minute',
    mm: '%d minutes',
    h: 'an hour',
    hh: '%d hours',
    d: 'a day',
    dd: '%d days',
    w: 'a week',
    ww: '%d weeks',
    M: 'a month',
    MM: '%d months',
    y: 'a year',
    yy: '%d years',
};

import isFunction from '../utils/is-function';

export function relativeTime(number, withoutSuffix, string, isFuture) {
    var output = this._relativeTime[string];
    return isFunction(output)
        ? output(number, withoutSuffix, string, isFuture)
        : output.replace(/%d/i, number);
}

export function pastFuture(diff, output) {
    var format = this._relativeTime[diff > 0 ? 'future' : 'past'];
    return isFunction(format) ? format(output) : format.replace(/%s/i, output);
}

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
card-mod-date-0.15.6 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.15.0 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.14.2 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.14.1 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.14.0 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.13.4 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.13.3 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.13.2 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.13.1 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.13.0 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.11.7 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.12.0 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.11.6 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.11.5 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.11.4 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.11.3 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.11.2 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.11.1 vendor/moment/src/lib/locale/relative.js
card-mod-date-0.11.0 vendor/moment/src/lib/locale/relative.js