realm-js/lib/lists.js

23 lines
375 B
JavaScript

'use strict';
let constants = require('./constants');
let util = require('./util');
module.exports = {
create,
};
class List {}
util.createMethods(List.prototype, constants.propTypes.LIST, [
'pop',
'shift',
'push',
'unshift',
'splice',
], true);
function create(realmId, info) {
return util.createList(List.prototype, realmId, info, true);
}