We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
let api = { _apiKey: 'kafakakafaka', name:'kafaka' }; const RESTRICTED = ['_apiKey']; api = new Proxy(api, { get(target, key, receiver) { if(RESTRICTED.indexOf(key) > -1) { throw Error(${key} 不可访问.); } return Reflect.get(target, key, receiver); }, set(target, key, value, receiver) { if(RESTRICTED.indexOf(key) > -1) { throw Error(${key} 不可修改); } return Reflect.set(target, key, value, receiver); } });
${key} 不可访问.
${key} 不可修改
// console.log(api._apiKey) console.log(api.name) // api._apiKey = '987654321'
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: