summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/array.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/array.js b/src/array.js
index c53113e..ae30012 100644
--- a/src/array.js
+++ b/src/array.js
@@ -17,9 +17,8 @@ export default function(graffiti) {
return [...new Set(this.map(o=> o._by))]
}
- async removeMine() {
- await Promise.all(
- this.mine.map(async o=> await o._remove()))
+ removeMine() {
+ this.mine.map(o=> delete o._key)
}
#getProperty(obj, propertyPath) {