cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

duration.js (342B)


      1// Side effect imports
      2import './prototype';
      3
      4import { createDuration } from './create';
      5import { isDuration } from './constructor';
      6import {
      7    getSetRelativeTimeRounding,
      8    getSetRelativeTimeThreshold,
      9} from './humanize';
     10
     11export {
     12    createDuration,
     13    isDuration,
     14    getSetRelativeTimeRounding,
     15    getSetRelativeTimeThreshold,
     16};