summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/utils/odipar/constants.js
blob: d4b2d1b309e02063e222a5348ca8f2188d9a7cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//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);
    };
}

export const mapaH = 718
export const mapaW = 498