-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
39 lines (31 loc) · 1.05 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import Put from './put'
import Get from './get'
import Path from './path'
import Rename from './rename'
import Delete from './delete'
import GetPath from './get-path'
export default class JEO {
constructor(delimitor) {
this.delimitor = delimitor || '\\.'
}
get(object, pathString, isSafe = false) {
const path = new Path(pathString, this.delimitor).getPath()
return new Get({ object, path, isSafe }).get()
}
put(object, pathString, value) {
const path = new Path(pathString, this.delimitor).getPath()
return new Put({ object, path, value }).put()
}
delete(object, pathString) {
const path = new Path(pathString, this.delimitor).getPath()
return new Delete({ object, path }).delete()
}
rename(object, pathString, key) {
const path = new Path(pathString, this.delimitor).getPath()
return new Rename({ object, path, key }).renameKey()
}
getPath(object, pathString) {
const path = new Path(pathString, this.delimitor).getPath()
return new GetPath({ object, path, delimitor: this.delimitor }).getPath()
}
}