refactoring, renaming capitalized functions to proper case, etc
This commit is contained in:
@@ -9,7 +9,7 @@ export default {
|
||||
// Clear all properties from object without resorting to assigning a new object (o={})
|
||||
// which can be problematic in some cases (IE bugs, watched data items in forms etc)
|
||||
|
||||
RemoveAllPropertiesFromObject(o) {
|
||||
removeAllPropertiesFromObject(o) {
|
||||
for (var variableKey in o) {
|
||||
if (o.hasOwnProperty(variableKey)) {
|
||||
delete o[variableKey];
|
||||
|
||||
Reference in New Issue
Block a user