mirror of
https://github.com/JonasunderscoreJones/jonas_jones-api.git
synced 2025-10-23 17:19:18 +02:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
/*!
|
|
* Module exports.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
exports.Collection = function() {
|
|
throw new Error('Cannot create a collection from browser library');
|
|
};
|
|
exports.Connection = function() {
|
|
throw new Error('Cannot create a connection from browser library');
|
|
};
|