Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
redent
/
index.js
blob: 9457849d8f946bb2d2f0f19ba2d4968777defee1 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
const
stripIndent
=
require
(
'strip-indent'
);
const
indentString
=
require
(
'indent-string'
);
module
.
exports
=
(
string
,
count
=
0
,
options
)
=>
indentString
(
stripIndent
(
string
),
count
,
options
);