xmlapi
Version:
a common interface for Node and browser native XML APIs
8 lines (7 loc) • 298 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
////////////////////////////////////////////////////////////////////////////////
function rawTrimmed(template, ...substitutions) {
return String.raw(template, substitutions).trim();
}
exports.rawTrimmed = rawTrimmed;