[][src]Function ul_sys::JSObjectMakeDate

pub unsafe extern "C" fn JSObjectMakeDate(
    ctx: JSContextRef,
    argumentCount: size_t,
    arguments: *const JSValueRef,
    exception: *mut JSValueRef
) -> JSObjectRef

@function @abstract Creates a JavaScript Date object, as if by invoking the built-in Date constructor. @param ctx The execution context to use. @param argumentCount An integer count of the number of arguments in arguments. @param arguments A JSValue array of arguments to pass to the Date Constructor. Pass NULL if argumentCount is 0. @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. @result A JSObject that is a Date.