GS1 Code Splitter
Splits a GS1 code into its AIs and values
Example Usages
let result = await brixxApi.businessBrixx({
functionName:"Gs1Splitter",
methodName: "Split",
gs1Code: "011234567890123417210521109988"
});
console.log(result)Example Usages with Split Char (FNC1)
let result = await brixxApi.businessBrixx({
functionName:"Gs1Splitter",
methodName: "Split",
gs1Code: "011234567890123417210521109988X211234",
fnc1Char: 'X'
});
console.log(result.applicationIdentifiers['10'])Last updated