Sha256: 083b521cf1760ff7b6d519bd46fc1368012684a190a1b0bf58e6a2c6bac4a933
Contents?: true
Size: 580 Bytes
Versions: 47
Compression:
Stored size: 580 Bytes
Contents
import { createDuration } from '../duration/create'; import { createLocal } from '../create/local'; import { isMoment } from '../moment/constructor'; export function to (time, withoutSuffix) { if (this.isValid() && ((isMoment(time) && time.isValid()) || createLocal(time).isValid())) { return createDuration({from: this, to: time}).locale(this.locale()).humanize(!withoutSuffix); } else { return this.localeData().invalidDate(); } } export function toNow (withoutSuffix) { return this.to(createLocal(), withoutSuffix); }
Version data entries
47 entries across 46 versions & 10 rubygems