UNPKG

dos2unix

Version:

A Node.js module to convert text files with DOS line breaks to Unix line breaks, i.e. like using `dos2unix`.

15 lines (12 loc) 231 B
/* * dos2unix * https://github.com/JamesMGreene/node-dos2unix * * Copyright (c) 2013 James M. Greene * Licensed under the MIT license. */ 'use strict'; // Exports module.exports = { dos2unix: require('./lib/dos2unix') };