mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2025-10-23 15:43:10 +00:00
10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
var deepCopy = function deepCopy(obj) {
|
|
return JSON.parse(JSON.stringify(obj));
|
|
};
|
|
|
|
exports.deepCopy = deepCopy; |