@@ -459,7 +459,7 @@ export interface JSONObject {
459459/**
460460 * Specifies the date-time format defined in [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339).
461461 * This constant can be used when defining or validating datetime strings.
462- *
462+ *
463463 * @example
464464 * const date = new Date().toISOString()
465465 * if (isValidDate(date, RFC3339)) {
@@ -471,24 +471,24 @@ export const RFC3339 = "RFC3339";
471471/**
472472 * Applies a patch object to a target object. Only properties that are explicitly defined in the patch
473473 * are applied. This includes nested objects. Properties marked with `Delete` will be removed.
474- *
474+ *
475475 * This function is especially useful when working with generated mock data in Mokapi that you want to override
476476 * or refine with specific values.
477- *
477+ *
478478 * https://mokapi.io/docs/javascript-api/mokapi/patch
479- *
479+ *
480480 * @param target The original object or value to be patched.
481481 * @param patch The patch object or value. Only defined values are applied; undefined values are ignored. Use `Delete` to remove fields.
482482 * @returns A new object or value with the patch applied.
483- *
483+ *
484484 * @example
485485 * const result = patch({ name: "foo", age: 42 }, { name: "bar" })
486486 * // result: { name: "bar", age: 42 }
487- *
487+ *
488488 * @example
489489 * const result = patch({ name: "foo", meta: { version: 1 } }, { meta: { version: 2 } })
490490 * // result: { name: "foo", meta: { version: 2 } }
491- *
491+ *
492492 * @example
493493 * const result = patch({ name: "foo", age: 42 }, { age: Delete })
494494 * // result: { name: "foo" }
@@ -497,16 +497,16 @@ export function patch(target: any, patch: any): any;
497497
498498/**
499499 * Special marker used with the `patch` function to indicate a property should be removed.
500- *
500+ *
501501 * When used as a value inside a patch object, the corresponding property will be deleted
502502 * from the result.
503- *
503+ *
504504 * This is useful when refining or overriding mock data in a script while keeping validation logic intact.
505- *
505+ *
506506 * https://mokapi.io/docs/javascript-api/mokapi/patch#delete
507- *
507+ *
508508 * @example
509509 * const result = patch({ name: "foo", age: 42 }, { age: Delete })
510510 * // result: { name: "foo" }
511511 */
512- export const Delete : unique symbol ;
512+ export const Delete : unique symbol ;
0 commit comments