ApplyTo

Description: The applyTo option property applies its value to the <identifier>.

Edit
ctr('.test', {
width: 200px
non: {
option: {
key: '.thisClass'
applyTo: '.applyTo'
}
font-size: 20px
}
})
.test:
width: 200px
non:
option:
key: .thisClass
applyTo: .applyTo
font-size: 20px
.test {
width: 200px;
}
.test:not(.thisClass) .applyTo {
font-size: 20px;
}
ctr('.test', {
  width: 200px
  non: {
    option: {
      key: '.thisClass'
      applyTo: '.applyTo'
    }
    font-size: 20px
  }
})
.test {
  width: 200px;
}
.test:not(.thisClass) .applyTo {
  font-size: 20px;
}
.test:
  width: 200px
  non:
    option:
      key: .thisClass
      applyTo: .applyTo
    font-size: 20px

Notes

AppendTo

Description: The appendTo option property appends its value to the <identifier>.

Edit
ctr('.test', {
width: 200px
non: {
option: {
key: '.thisClass'
appendTo: '.appendTo'
}
font-size: 20px
}
})
.test:
width: 200px
non:
option:
key: .thisClass
appendTo: .appendTo
font-size: 20px
.test {
width: 200px;
}
.test:not(.thisClass).appendTo {
font-size: 20px;
}
ctr('.test', {
  width: 200px
  non: {
    option: {
      key: '.thisClass'
      appendTo: '.appendTo'
    }
    font-size: 20px
  }
})
.test {
  width: 200px;
}
.test:not(.thisClass).appendTo {
  font-size: 20px;
}
.test:
  width: 200px
  non:
    option:
      key: .thisClass
      appendTo: .appendTo
    font-size: 20px

Notes

Override

Description: The override option property overrides the entirety of the selector, including the <identifier>, with its value.

Edit
ctr('.test', {
width: 200px
non: {
option: {
key: '.thisClass'
override: '#override'
}
font-size: 20px
}
})
.test:
width: 200px
non:
option:
key: .thisClass
override: '#override'
font-size: 20px
.test {
width: 200px;
}
#override {
font-size: 20px;
}
ctr('.test', {
  width: 200px
  non: {
    option: {
      key: '.thisClass'
      override: '#override'
    }
    font-size: 20px
  }
})
.test {
  width: 200px;
}
#override {
  font-size: 20px;
}
.test:
  width: 200px
  non:
    option:
      key: .thisClass
      override: '#override'
    font-size: 20px

Notes