blob: 73f3521a208d9869367c95e9395bf7645d5c817d (
plain)
1
2
3
4
5
6
7
8
9
|
//export const apiUrl = `${config.api}api/v1/`;
export const apiUrl = 'http://localhost:8083/';
//mensaje
export function partial(fn, ...presetArgs) {
return function partiallyApplied(...laterArgs) {
return fn(...presetArgs, ...laterArgs);
};
}
|