UNPKG

braintree-web

Version:

A suite of tools for integrating Braintree in the browser

14 lines (10 loc) 280 B
"use strict"; var FrameService = require("./frame-service"); module.exports = { create: function createFrameService(options, callback) { var frameService = new FrameService(options); frameService.initialize(function () { callback(frameService); }); }, };