Document public API, comment framework code.

This commit is contained in:
David Anson 2015-03-15 23:39:17 -07:00
parent ec7684b95f
commit 63a52e9dea
4 changed files with 94 additions and 5 deletions

View file

@ -1,3 +1,7 @@
"use strict";
// Regular expression for matching common newline characters
module.exports.newLineRe = /\r\n|\r|\n/;
// readFile options for reading with the UTF-8 encoding
module.exports.utf8Encoding = { "encoding": "utf8" };