* Vendor * * @param {string} content * @param {number} context * @return {boolean}
(content, context)
| 23296 | * @return {boolean} |
| 23297 | */ |
| 23298 | function vendor (content, context) { |
| 23299 | var index = content.indexOf(context === 1 ? ':' : '{') |
| 23300 | var key = content.substring(0, context !== 3 ? index : 10) |
| 23301 | var value = content.substring(index + 1, content.length - 1) |
| 23302 | |
| 23303 | return should(context !== 2 ? key : key.replace(pseudofmt, '$1'), value, context) |
| 23304 | } |
| 23305 | |
| 23306 | /** |
| 23307 | * Supports |