cscg24-guacamole

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

utc.js (186B)


      1import { createLocalOrUTC } from './from-anything';
      2
      3export function createUTC(input, format, locale, strict) {
      4    return createLocalOrUTC(input, format, locale, strict, true).utc();
      5}