Undefined.cs 189 B

12345678
  1. namespace Jint.Native
  2. {
  3. public static class Undefined
  4. {
  5. public static readonly JsValue Instance = JsValue.Undefined;
  6. public const string Text = "undefined";
  7. }
  8. }