Product Description
/**
* Common event handler for click and keydown events.
* @param {Event} event - The event object.
* @param {Function} handleClickOrEnter - Function to handle click or Enter key events.
* @param {Function} handleEsc - Function to handle Esc key events.
*/
// [TODO][AplusMantle-8064] Create common event handler util(key events, click events) in AplusModuleResources
function handleClickAndKeyEvents(event, handleClickOrEnterOrSpace) {
const ENTER_KEY_CODE = 13;
const ESCAPE_KEY_CODE = 27;
const SPACE_KEY_CODE = 32;
const isClick = event.type === 'click';
const isKeydown = event.type === 'keydown';
const isEnter = isKeydown && event.keyCode === ENTER_KEY_CODE;
const isSpace = isKeydown && event.keyCode === SPACE_KEY_CODE;
const isEsc = isKeydown && event.keyCode === ESCAPE_KEY_CODE;
if (isClick || isEnter || isSpace) {
handleClickOrEnterOrSpace();
} else if (isEsc) {
handleEsc(event);
}
}
/**
* Function to handle esc key event.
* @param {Event} event - The event object.
*/
function handleEsc(event) {
event.target.blur()// force remove focus
}


1 A YEAR OF SKIN CHANGE 2 It won't disappoint! 3 Increased Focus 4 Visible Long-term Results
1 HOW TO USE 2 Skin Care Steps 3 Proven quality
1 Sisters' Gathering 2 Reading 3 Yoga 4 Chatting 5 Bedtime Skincare

Can it be used on any skin tone or type?
Yes, it is suitable for all skin types, including sensitive, dry, irritated, or blemish-prone skin.
What are the benefits of using the LED light therapy mask?
The benefits of using the LED light therapy mask include improving skin elasticity, reducing wrinkles and fine lines, treating acne, promoting wound healing, reducing scars, improving blood circulation, and overall rejuvenating the skin.
How often should I use the LED light therapy mask?
The frequency of use varies depending on individual needs and the specific skin condition being treated. It is generally recommended to use the LED light therapy mask a few times a week, for 10-20 minutes each time.
Why does my face become flushed or dull after using the red/blue light?
This is normal. Red light therapy can cause temporary flushing that fades within 1-2 hours. Blue light therapy reduces sebum and acne but may dull the skin temporarily, returning to normal within a day.
My skin is red and dry after using the red light of the mask, why is this? What should I do?
This may be due to an overreaction caused by too long or too frequent phototherapy sessions. It is recommended that you reduce the frequency and duration of each session and use a gentle moisturizer to hydrate your skin.