(name)
| 708 | |
| 709 | const UNSAFE_FIELD_NAMES = new Set(["__proto__", "prototype", "constructor"]); |
| 710 | function isUnsafeFieldName(name) { |
| 711 | return UNSAFE_FIELD_NAMES.has(name); |
| 712 | } |
| 713 | |
| 714 | function upsertSectionContent(sectionId, field, value, mark = "draft", author = "agent") { |
| 715 | const section = findSectionOrThrow(sectionId); |
no outgoing calls
no test coverage detected