/* * Copyright (c) Linets 2023. * @author Jhonny Negrin */ define( [ 'jquery', 'underscore' ], function ($, _) { 'use strict'; return function (email) { if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email)) { return; } try { (window["rrApiOnReady"] = window["rrApiOnReady"] || []).push(function () { rrApi.setCustomer({ "customerId": email, "email": email }); }); } catch (e) {} }; } );