summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext/string/#/indent.js
blob: 223bd82b0f1a977d1d5561c4252defdb881ebbc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

var repeat = require('./repeat')

  , replace = String.prototype.replace
  , re = /(\r\n|[\n\r\u2028\u2029])([\u0000-\u0009\u000b-\uffff]+)/g;

module.exports = function (indent/*, count*/) {
	var count = arguments[1];
	indent = repeat.call(String(indent), (count == null) ? 1 : count);
	return indent + replace.call(this, re, '$1' + indent + '$2');
};