Parse a combined stance+laterality string into its components.
Korean: 자세 측면 분리
Takes a string in the format "stance_laterality" and returns the individual stance and laterality components.
Combined stance string (e.g., "geon_left")
Object with stance and laterality, or null if invalid format
const result = parseStanceWithSide("geon_left");// { stance: "geon", laterality: "left" }const invalid = parseStanceWithSide("invalid");// null Copy
const result = parseStanceWithSide("geon_left");// { stance: "geon", laterality: "left" }const invalid = parseStanceWithSide("invalid");// null
자세측면분리
Parse a combined stance+laterality string into its components.
Korean: 자세 측면 분리
Takes a string in the format "stance_laterality" and returns the individual stance and laterality components.