as()

in src/Registration.js [67:75]


	as(key) {
		if (typeof key !== 'string') {
			Logger.error('RHE13', 'Unexpected key type. Expected a string.', key);
			return;
		}
		this._key = key;

		return this;
	}