UNPKG
mongodb-realm-cli
Version:
beta (2.0.0-beta.7)
latest (2.6.2)
2.6.2
2.6.1
2.6.0
2.5.0
2.4.2
2.4.1
2.3.5
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.0
2.1.0
2.0.0
2.0.0-beta.7
2.0.0-beta.6
2.0.0-beta.5
2.0.0-beta.4
2.0.0-beta.3
2.0.0-beta.2
2.0.0-beta.1
2.0.0-beta
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
The MongoDB Realm Command Line Interface
github.com/10gen/realm-cli
10gen/realm-cli
mongodb-realm-cli
/
internal
/
local
/
testdata
/
dependencies
/
dir
/
functions
/
node_modules
/
axios
/
lib
/
helpers
/
bind.js
12 lines
(10 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
module
.
exports
=
function
bind
(
fn, thisArg
) {
return
function
wrap
(
) {
var
args =
new
Array
(
arguments
.
length
);
for
(
var
i =
0
; i < args.
length
; i++) { args[i] =
arguments
[i]; }
return
fn.
apply
(thisArg, args); }; };