Taritsyn / LibSassHost

.NET wrapper around the LibSass library with the ability to support a virtual file system.
Apache License 2.0
82 stars 11 forks source link

Support for Memory<char> as parameter and result CSS #47

Open ArjunVachhani opened 3 years ago

ArjunVachhani commented 3 years ago

SCSS and CSS string could be huge some times >200KB, using Memory<char> and MemoryPool<char> could reduce allocation on LOH and improve performance.

Allowing user to pass Memory<char> as parameter and result could help in some scenario.