Add NPM test script

This commit is contained in:
brunosimon
2017-07-18 04:03:47 +02:00
parent 2b49b8a847
commit 2770fad856
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -9,13 +9,13 @@ class File
constructor(_options)
{
// Set up
this.id = ids.get_id()
this.name = _options.name
this.path = {}
this.id = ids.getId()
this.name = _options.name
this.path = {}
this.path.directory = _options.path
this.path.full = this.path.directory + '/' + this.name
this.versions = []
this.socket = _options.socket
this.path.full = this.path.directory + '/' + this.name
this.versions = []
this.socket = _options.socket
const nameParts = this.name.split('.')