Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
This is an open-source library for use in writing tools around Final Fantasy XIV.
(Right now, it simply is a toolkit for dealing with in-game time.)
Like most nascent JavaScript projects, this code is sparsely documented. As this library grows beyond a single object with three public methods, the author promises to take documentation more seriously.
This library is written exclusively in ES5 (to avoid the need for transpiling), but documentation will generally follow ES6 conventions.
Install from npm:
$ npm install eorzea
The eorzea.Time
class provides a tool for calculating the current Eorzea
time, as well as representing Eorzea times:
import eorzea from 'eorzea';
var t = new eorzea.Time(5, 30);
t.toString(); // '05:30:00'
The current Eorzea time can be requested with:
import eorzea from 'eorzea';
var now = eorzea.Time.now();
A strftime
method is provided on Eorzean timestamps:
import eorzea from 'eorzea';
var t = new eorzea.Time(5, 30);
t.strftime('%I:%M %P'); // '05:30 AM'
FAQs
A helper library for writing tools for Final Fantasy XIV.
The npm package eorzea receives a total of 2 weekly downloads. As such, eorzea popularity was classified as not popular.
We found that eorzea demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.