12345678910111213141516171819202122232425262728 |
- 'use strict';
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- var URI = function () {
- function URI(uri) {
- _classCallCheck(this, URI);
- this._uri = uri;
- }
- URI.prototype.toString = function toString() {
- return this._uri;
- };
- return URI;
- }();
- module.exports = URI;
|