()
| 38 | * @returns {{ name: string, implementation: EXPECTED_ANY, api: "modern" | "modern-compile" }} implementations |
| 39 | */ |
| 40 | export default function getImplementationsAndAPI() { |
| 41 | return [ |
| 42 | { |
| 43 | name: sass.info.split("\t")[0], |
| 44 | implementation: sass, |
| 45 | api: "modern", |
| 46 | }, |
| 47 | { |
| 48 | name: sass.info.split("\t")[0], |
| 49 | implementation: sass, |
| 50 | api: "modern-compiler", |
| 51 | }, |
| 52 | { |
| 53 | name: sassEmbedded.info.split("\t")[0], |
| 54 | implementation: sassEmbedded, |
| 55 | api: "modern", |
| 56 | }, |
| 57 | { |
| 58 | name: sassEmbedded.info.split("\t")[0], |
| 59 | implementation: sassEmbedded, |
| 60 | api: "modern-compiler", |
| 61 | }, |
| 62 | ]; |
| 63 | } |
| 64 | |
| 65 | export { sass, sassEmbedded }; |
no outgoing calls
no test coverage detected
searching dependent graphs…