Code coverage report for lib/deps/ajax/createMultipartPart.js

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

All files » lib/deps/ajax/ » createMultipartPart.js
1 2 3 4 5 6 7        1 482  
'use strict';
 
// create a "part" suitable for multipart. in the browser
// this is an ArrayBuffer; in Node it's a binary string
module.exports = function createMultipartPart(data) {
  return data;
};