stratic-handle-offset

1.0.0 • Public • Published

stratic-handle-offset

Return a properly configured MomentJS moment for a Stratic post

Installation

npm install stratic-handle-offset

Usage

All this does is make sure that UTC offset information in Stratic posts is handled properly. This is pretty simple but is easy to forget to do (or to forget the details of how to do) - hence this module.

The module exports a single function. In order to use it, just pass the function the Stratic post's time information object (almost always file.data.time). You will get back a MomentJS moment with the offset information all set up so that when you call moment#month(), moment#year(), etc., everything Just Works™ and you get back accurate information.

Example

var handleOffset = require('stratic-handle-offset');
var through2 = require('through2');

through2.obj(function(file, enc, callback) {
	var date = handleOffset(file.data.time);
	// `date` is now a MomentJS moment; do with that what you will
	// E.g.:

	var year = date.year();
}

Code of Conduct

Please note that StraticJS is developed under the Contributor Covenant Code of Conduct. Project contributors are expected to respect these terms.

For the full Code of Conduct, see CODE_OF_CONDUCT.md. Violations may be reported to alex@strugee.net.

License

LGPL 3.0+

Author

AJ Jordan alex@strugee.net

Readme

Keywords

Package Sidebar

Install

npm i stratic-handle-offset

Weekly Downloads

1

Version

1.0.0

License

LGPL-3.0+

Last publish

Collaborators

  • strugee