Sha256: 3887cc9655f4c7e0701902d58b3e3c2f254d95e9e9b97f6d8a08db54bda11b1f

Contents?: true

Size: 286 Bytes

Versions: 7

Compression:

Stored size: 286 Bytes

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
exports.getNumberOfLines = function getNumberOfLines(str) {
	var nr = -1;
	var idx = -1;
	do {
		nr++
		idx = str.indexOf("\n", idx + 1);
	} while(idx >= 0);
	return nr;
};

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
ilog-0.4.1 node_modules/source-list-map/lib/helpers.js
ilog-0.4.0 node_modules/source-list-map/lib/helpers.js
ilog-0.3.3 node_modules/source-list-map/lib/helpers.js
lanes-0.8.0 node_modules/source-list-map/lib/helpers.js
gulp_assets-1.0.0.pre.5 template/node_modules/webpack/node_modules/webpack-core/node_modules/source-list-map/lib/helpers.js
gulp_assets-1.0.0.pre.4 template/node_modules/webpack/node_modules/webpack-core/node_modules/source-list-map/lib/helpers.js
gulp_assets-1.0.0.pre.3 template/node_modules/webpack/node_modules/webpack-core/node_modules/source-list-map/lib/helpers.js