2015-10-28 10:37:17 -07:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
|
|
|
*/
|
|
|
|
|
2015-10-07 17:08:19 -07:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-21 13:25:12 -07:00
|
|
|
const constants = require('./constants');
|
|
|
|
const util = require('./util');
|
2015-10-07 17:08:19 -07:00
|
|
|
|
2015-10-19 12:06:47 -07:00
|
|
|
module.exports = {
|
|
|
|
create,
|
|
|
|
};
|
2015-10-07 17:08:19 -07:00
|
|
|
|
2015-10-19 12:06:47 -07:00
|
|
|
class Results {}
|
2015-10-07 17:08:19 -07:00
|
|
|
|
2015-10-19 16:19:43 -07:00
|
|
|
util.createMethods(Results.prototype, constants.objectTypes.RESULTS, [
|
2015-10-14 18:53:37 -07:00
|
|
|
'sortByProperty',
|
2015-10-19 12:06:47 -07:00
|
|
|
]);
|
2015-10-14 18:53:37 -07:00
|
|
|
|
2015-10-07 17:08:19 -07:00
|
|
|
function create(realmId, info) {
|
2015-10-19 15:26:42 -07:00
|
|
|
return util.createList(Results.prototype, realmId, info);
|
2015-10-07 17:08:19 -07:00
|
|
|
}
|