The documentation of some JavaScript APIs shows the following snippets as an example of how to invoke some function:
It was certainly not the case at the time of your question, but right now :: is a valid ES7 operator. It's actually a shortcut for bind.
::
bind
::foo.bar
is equivalent to
foo.bar.bind(foo)
See an explanation here for examples: