snooze-moment

1.0.4 • Public • Published

snooze-moment

A simple wrapper for the NPM module Moment.

Install

Install with npm

npm install snooze-moment --save

Use

Inject the module into your snooze module

require('snooze-moment');
snooze.module('MyModule', ['snooze-moment']);

Ready to use.

snooze.module('MyModule').service('MyServ', function($moment) {
  return {
    whatIsToday: function() {
      // Todays date in MySQL date format
      return $moment(new Date(), 'YYYY-MM-DD')
    }
  };
});

Documentation

See official moment documentation

http://momentjs.com/docs/#/parsing/

Package Sidebar

Install

npm i snooze-moment

Weekly Downloads

2

Version

1.0.4

License

MIT

Last publish

Collaborators

  • iamchairs