Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

file-normalize

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

file-normalize

File system utils for normalizing things like eol, encoding and BOM.

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
94
increased by38.24%
Maintainers
1
Weekly downloads
 
Created
Source

file-normalize NPM version

File system utils for normalizing things like eol, encoding and BOM.

Install

Install with npm:

npm i file-normalize --save-dev

API

.pathSepRegex

Normalize paths to use /

  • return {N/A}

.normalizeEOL ( str )

Normalize line endings to use the defaults of the current operating system.

  • str {String}:
  • return {String}

.normalizeNL ( str )

Normalize all line endings to newlines, \n.

var file = require('read-file');
var str = file.readFileSync('foo.txt');
file.normalizeNL(str);
  • str {String}:
  • return {String}

.encoding ( encoding )

Encoding to use. Default is utf8.

  • encoding {String}:
  • return {String}

.preserveBOM

Preserve byte order marks. Default is false.

Example:

var file = require('file-normalize');
file.preserveBOM = true;
  • return {N/A}

.stripBOM ( str )

Strip byte order marks.

Example:

var file = require('read-file');
var str = file.readFileSync('foo.txt');
file.stripBOM(str);
  • str {String}:
  • return {String}

Author

Jon Schlinkert

License

Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on June 10, 2014.

Keywords

FAQs

Package last updated on 11 Jun 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc