MCPcopy Create free account
hub / github.com/microsoft/tslib / __makeTemplateObject

Function __makeTemplateObject

tslib.es6.mjs:254–257  ·  view source on GitHub ↗
(cooked, raw)

Source from the content-addressed store, hash-verified

252}
253
254export function __makeTemplateObject(cooked, raw) {
255 if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
256 return cooked;
257};
258
259var __setModuleDefault = Object.create ? (function(o, v) {
260 Object.defineProperty(o, "default", { enumerable: true, value: v });

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected