-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle.js
More file actions
14 lines (12 loc) · 809 Bytes
/
bundle.js
File metadata and controls
14 lines (12 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require=(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({"/main.js":[function(require,module,exports){
module.exports = function (iframe, PDFDocument, blobStream){
var doc = new PDFDocument();
var stream = doc.pipe(blobStream());
doc.text('You');
doc.end();
stream.on('finish', function(){
url = stream.toBlobURL('application/pdf');
iframe.src = url;
});
}
},{}]},{},[]);