UNPKG

251 BJavaScriptView Raw
1var Locator = function (name, filename, pending, title) {
2 this.name = name;
3 this.filename = filename;
4 this.pending = pending;
5 this.title = title;
6};
7
8Locator.prototype.toString = function () {
9 return this.name;
10};
11
12module.exports = Locator;