mundipagg/magento2

View on GitHub
view/frontend/web/js/action/installments.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @author      MundiPagg Embeddables Team <embeddables@mundipagg.com>
 * @copyright   2017 MundiPagg (http://www.mundipagg.com)
 * @license     http://www.mundipagg.com  Copyright
 *
 * @link        http://www.mundipagg.com
 */
/*browser:true*/
/*global define*/
define(
    [
        'mage/storage',
        'Magento_Checkout/js/model/url-builder'
    ],
    function (
        storage,
        urlBuilder
    ) {
        return function () {
            var serviceUrl;
            return urlBuilder.createUrl('/mundipagg/creditcard/installments/', {});
        };
    }
);