Your price after 5% discount when using your Academy Credit Card. Apply Now
Quantity
STYLE IT WITH
about this product
SKU: 145038122
ITEM: 80882
Strap, lash and compress your gear with the Gear Aid 1 x 60 in Utility Strap. The 100% nylon strap is tough, and the side-release buckle allows easy adjustments to ensure a secure fit around your equipment. A TPU strap tail holder eliminates dangling ends.
Features and Benefits
100% nylon construction delivers durability
Side-release buckle allows easy adjustments
TPU tail holder eliminates dangling straps
Specifications
Product Type: Camping Accessories
Product length (in.): 60
Activity: Camping
Material: Nylon
Product width (in.): 1
What's in the Box
Gear Aid 1 x 60 in Utility Strap
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();