convert-dates

0.1.1 • Public • Published

convert-dates

Convert all Date instances in an object.

Installation

$ component install segmentio/convert-dates

Example

var convert = require('convert-dates');
var obj = { date: new Date() };
 
obj = convert(obj, function (date) { return 'string'; });
 
obj.date; // "string"

API

convertDates(object, converter)

Passes all of the Date values in an object through the converter function.

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i convert-dates

Weekly Downloads

98

Version

0.1.1

License

MIT

Last publish

Collaborators

  • segmentio