Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 135176564
ITEM: MSC-5272
Protect your swingset or trampoline against high wind with the Sportspower Anchor Kit. These 5 corkscrews provide secure anchor points on firm or soft ground, securing play equipment for safer fun.
Features and Benefits
Corkscrews provide secure anchors for a swing set or trampoline
Improve playtime safety and protect against strong winds
Works with soft or hard ground
Set includes 5 anchors
Specifications
Inflatable: No
Batteries Required: No
Number of Batteries: 0
Product Type: Outdoor Accessories
Batteries Included: No
Activity: Backyard
What's in the Box
Sportspower Anchor Kit
function updateCustomerIdStorage() {
const sourceKey = 'aso_cdp_data';
const targetKey = 'm_cdp_customer_id';
let customerId = null;
try {
const storedValue = localStorage.getItem(sourceKey);
if (storedValue) {
const data = JSON.parse(storedValue);
customerId = data.cdpData?.customerId;
} else {
console.warn(`Source Key "${sourceKey}" not found in local storage.`);
}
} catch (error) {
console.error(`Error parsing JSON from source key "${sourceKey}":`, error);
}
if (customerId) {
localStorage.setItem(targetKey, customerId);
// console.log(`Successfully set "${targetKey}" to: ${customerId}`);
} else {
localStorage.removeItem(targetKey);
// console.log(`No customerId found. Removed key "${targetKey}" from local storage.`);
}
}
updateCustomerIdStorage();