UNPKG

openapi-modifier

Version:

This package allows you to automate the process of modifying OpenAPI specifications by applying a set of predefined rules

8 lines (7 loc) 212 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.deepClone = void 0; const deepClone = (obj) => { return JSON.parse(JSON.stringify(obj)); }; exports.deepClone = deepClone;