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