Anapher/Strive

View on GitHub
src/Web/WebSPA/Utils/JavaScriptResult.cs

Summary

Maintainability
A
0 mins
Test Coverage
using Microsoft.AspNetCore.Mvc;

namespace WebSPA.Utils
{
    public class JavaScriptResult : ContentResult
    {
        public JavaScriptResult(string script)
        {
            Content = script;
            ContentType = "application/javascript";
        }
    }
}