Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
5 months ago2 years old
Documentation comment not found for arrow function load
1export const load = ({ params }: any) => {2  return params;
3};
Documentation comment not found for arrow function load
1export const load = ({ params }: any) => {2  return params;
3};
Documentation comment not found for arrow function load
1export const load = ({ params }: any) => {2  return params;
3};
Documentation comment not found for function declaration getPublicIP
 5export let ip;
 6getPublicIP((ipAddress) => (ip = ipAddress));
 7
 8function getPublicIP(callback) { 9  fetch("https://api.ipify.org?format=json")
10    .then((response) => response.json())
11    .then((data) => callback(data.ip))