Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 363 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 363 Bytes

JPL Date and time - JavaScript implementation

Usage

// TODO:
import jpl from '@jplorg/jpl';
import libDateTime from '@jplorg/lib-date-time';

(async () => {
  await libDateTime.install();

  const inputs = [null];

  const results = await jpl.run('date.now() | date.format("yyyy")', inputs);

  console.log(...results);
})();