Package Exports
- fifadate
- fifadate/es5/index.js
- fifadate/es6/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fifadate) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
fifadate
Utils for Fifa Soccer Game dates
🛠️ Install
Nodejs 12 or higher need to be installed first
npm install fifadateor
yarn add fifadate🚀 Quick start
Type this into your ts file.
import 'fifadate'; // for es5
// or for es6
import { registerFifaDatePrototype } from 'fifadate';
registerFifaDatePrototype();
// usage
console.log(new Date('1970-01-01').toFifaDate()); // 141428
console.log(new Date('1970-01-01').addYear(1));
console.log(new Date('1970-01-01').age());
console.log(new Date('1970-01-01T03:00:00.000Z').normalize());
console.log(Date.fromFifaDate(141428)); // 1970-01-01🪪 License
Copyright © 2023 - 2025 Dominik Hladik
All contents are licensed under the MIT license.