Question: Did the company disclose in their modern slavery statement that they are conducting some form of due diligence on modern slavery issues in their supply chain?
Answer:
No
Walk Free
2015
Unverified - Added by Steward

m1Opts = [
  "Audits of suppliers (self- reporting)",
  "Audits of suppliers (independent)",
  "On-site visits (self- reporting)",
  "On-site visits (independent)"
]

m2Opts = [
  "Worker remediation",
  "Corrective action plan",
  "Senior management",
  "Cancel contracts"
]

containsAny = (metric, options) ->  [metric].flat().filter( (v) -> options.includes v).length

if containsAny(m1, m1Opts) || containsAny(m2, m2Opts)
    "Yes"
else if m1.includes("Unknown") && m2.includes("Unknown")
    "Unknown"
else
    "No"

Comments