js-partial-stod
v1.0.0
Published
A partial to return the duration as a number (string to duration).
Downloads
10
Readme
js-partial-stod
Synopsis
A partial to return the duration as a number (string to duration) in UMD.
Install
npm install js-partial-stod
Usage
- AMD (e.g.: RequireJS)
define(['js-partial-stod'], function(stod) {
stod('3.5h');
stod('1.5h');
stod('175min');
stod('42 sec');
stod('300ms');
stod('1 hour 23 minutes 45 seconds 600 milliseconds');
});
- CommonJS (e.g.: NodeJS)
var stod = require('js-partial-stod');
stod('3.5h');
stod('1.5h');
stod('175min');
stod('42 sec');
stod('300ms');
stod('1 hour 23 minutes 45 seconds 600 milliseconds');
- Browser
// load the source from "node_modules/js-partial-stod/dist/js-partial-stod.js" - for development
// or from "node_modules/js-partial-stod/dist/js-partial-stod.min.js" - for production
var stod = js_partial_stod; // it is available in the global namespace
stod('3.5h');
stod('1.5h');
stod('175min');
stod('42 sec');
stod('300ms');
stod('1 hour 23 minutes 45 seconds 600 milliseconds');
Documentation
Check the source here since it is very well documented.
Issues
If you find any bugs and other issues, check the GSDC Guide - Issues section on how to submit issues in a standardized way on the project's issues page.
In case you have any suggestions regarding the project (features, additional capabilities, etc.), check the GSDC Guide - Suggestions section on how to submit suggestions in an easy, standardized way on the project's issues page.
Contribution
In order to contribute to this project, check the GSDC Guide for an easy, standardized way on how to contribute to projects.
Support
If you by any means find this project useful, consider supporting the organization.
There are multiple options to support the project and the developers. Any means of support is beneficial and helpful.
License
MIT @ Richard King