mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix 'EJSON.newBinary' -- it's just 'Base64.newBinary'
This commit is contained in:
@@ -453,6 +453,4 @@ EJSON.clone = function (v) {
|
||||
* @locus Anywhere
|
||||
* @param {Number} size The number of bytes of binary data to allocate.
|
||||
*/
|
||||
EJSON.newBinary = function (len) {
|
||||
return new Base64.newBinary(len);
|
||||
};
|
||||
EJSON.newBinary = Base64.newBinary;
|
||||
|
||||
Reference in New Issue
Block a user