@dillonkearns/elm-graphql
Version:
<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">
51 lines (46 loc) • 1.25 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = dedent;
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*
*/
/**
* fixes identation by removing leading spaces from each line
*/
function fixIdent(str) {
var indent = /^\n?( *)/.exec(str)[1]; // figure out ident
return str.replace(RegExp('^' + indent, 'mg'), '') // remove ident
.replace(/^\n*/m, '') // remove leading newline
.replace(/ *$/, ''); // remove trailing spaces
}
/**
* An ES6 string tag that fixes identation. Also removes leading newlines
* but keeps trailing ones
*
* Example usage:
* const str = dedent`
* {
* test
* }
* `
* str === "{\n test\n}\n";
*/
function dedent(strings) {
var raw = typeof strings === 'string' ? [strings] : strings.raw;
var res = '';
// interpolation
for (var i = 0; i < raw.length; i++) {
res += raw[i].replace(/\\`/g, '`'); // handle escaped backticks
if (i < (arguments.length <= 1 ? 0 : arguments.length - 1)) {
res += arguments.length <= i + 1 ? undefined : arguments[i + 1];
}
}
return fixIdent(res);
}