Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameter options (required)

slice slices.current

...

Returns a JSMA slice for the current slice, if available.

...

Code Block
languagejs
linenumberstrue
...
var slice = slices.current();
if (slice =!== null)
{
   return createStandardResult("there is no current slice");
}
...

...