UNPKG

@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">

17 lines (13 loc) 239 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.cloneNode = cloneNode; function cloneNode(n) { // $FlowIgnore var newObj = {}; for (var k in n) { newObj[k] = n[k]; } return newObj; }