UNPKG

298 BJavaScriptView Raw
1/* eslint no-invalid-this: 0 */
2"use strict";
3
4var Locator = function (name, filename, pending, title) {
5 this.name = name;
6 this.filename = filename;
7 this.pending = pending;
8 this.title = title;
9};
10
11Locator.prototype.toString = function () {
12 return this.name;
13};
14
15module.exports = Locator;