UNPKG
sugar-language
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.0
0.0.1
Language module for the Sugar Javascript utility library.
sugarjs.com
andrewplummer/Sugar
sugar-language
/
common
/
internal
/
wrapNamespace.js
9 lines
(7 loc)
•
175 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
'use strict'
;
function
wrapNamespace
(
method
) {
return
function
(
sugarNamespace, arg1, arg2
) { sugarNamespace[method](arg1, arg2); }; }
module
.
exports
= wrapNamespace;