UNPKG

@wordpress/interactivity

Version:

Package that provides a standard and simple way to handle the frontend interactivity of Gutenberg blocks.

11 lines (8 loc) 263 B
const namespaceStack: string[] = []; export const getNamespace = () => namespaceStack.slice( -1 )[ 0 ]; export const setNamespace = ( namespace: string ) => { namespaceStack.push( namespace ); }; export const resetNamespace = () => { namespaceStack.pop(); };