UNPKG

measurement-framework

Version:

Collection of Javascript code to implement a browser based measurement system for websites. It uses a cookie to store a users action on a webpage and let you map thoose actions to a particular state in the user journey.

15 lines (13 loc) 271 B
/** * Created by michael on 13/05/2017. */ import window from "window" // utility to check if we currently are in an iframe function inIframe() { try { return window.self !== window.top } catch (e) { return true } } export default inIframe