Code coverage report for lib/deps/binary/base64StringToBlobOrBuffer.js

Statements: 100% (3 / 3)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (3 / 3)      Ignored: none     

All files » lib/deps/binary/ » base64StringToBlobOrBuffer.js
1 2 3 4 5 6 7    1   1 83  
'use strict';
 
var typedBuffer = require('./typedBuffer');
 
module.exports = function (b64, type) {
  return typedBuffer(b64, 'base64', type);
};