mirror of
https://github.com/electron/electron.git
synced 2026-01-28 00:38:35 -05:00
8 lines
131 B
JavaScript
8 lines
131 B
JavaScript
function resolveGetters (...args) {
|
|
return args.map(o => JSON.parse(JSON.stringify(o)))
|
|
}
|
|
|
|
module.exports = {
|
|
resolveGetters
|
|
}
|