UNPKG
castelog
Version:
latest (0.0.1)
0.0.1
Programación JavaScript en castellano.
github.com/allnulled/castelog
allnulled/castelog
castelog
/
src
/
lib
/
569.castelog.v1.metodos.un_proxy.js
6 lines
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
Castelog
.
metodos
.
un_proxy
=
function
(
obj, proxifiers = {}
) {
if
(
typeof
Proxy
===
"undefined"
) {
throw
new
Error
(
"Required global «Proxy» to not be undefined in order to «Castelog.metodos.un_proxy»"
); }
return
new
Proxy
(obj, proxifiers); };