2015-02-12 04:26:43 +00:00
|
|
|
/**
|
2015-03-23 17:55:49 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2015-02-12 04:26:43 +00:00
|
|
|
* @providesModule unindent
|
|
|
|
*/
|
2016-11-21 01:49:21 +00:00
|
|
|
'use strict';
|
2015-02-12 04:26:43 +00:00
|
|
|
|
|
|
|
// 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;
|