UNPKG

396 BJavaScriptView Raw
1export function instancePropertyGet(pluginObj, key) {
2 if (pluginObj._objectInstance && pluginObj._objectInstance[key]) {
3 return pluginObj._objectInstance[key];
4 }
5 return null;
6}
7export function instancePropertySet(pluginObj, key, value) {
8 if (pluginObj._objectInstance) {
9 pluginObj._objectInstance[key] = value;
10 }
11}
12//# sourceMappingURL=instance-property.js.map
\No newline at end of file