30 lines
748 B
JavaScript
30 lines
748 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule unindent
|
|
*/
|
|
|
|
// Remove the indentation introduced by JSX
|
|
function unindent(code) {
|
|
var lines = code.split('\n');
|
|
if (lines[0] === '') {
|
|
lines.shift();
|
|
}
|
|
if (lines.length <= 1) {
|
|
return code;
|
|
}
|
|
|
|
var indent = lines[0].match(/^\s*/)[0];
|
|
for (var i = 0; i < lines.length; ++i) {
|
|
lines[i] = lines[i].replace(new RegExp('^' + indent), '');
|
|
}
|
|
return lines.join('\n');
|
|
}
|
|
|
|
module.exports = unindent;
|