mirror of
https://github.com/electron/electron.git
synced 2026-05-02 03:00:22 -04:00
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
function resolverGetters (...args) {
|
|
return args.map(o => JSON.parse(JSON.stringify(o)))
|
|
}
|
|
|
|
module.exports = {
|
|
resolverGetters
|
|
}
|