UNPKG

265 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.rpushx = rpushx;
7
8var _index = require('./index');
9
10function rpushx(key, value) {
11 if (!this.data.has(key)) {
12 return 0;
13 }
14
15 return _index.rpush.call(this, key, value);
16}
\No newline at end of file