// Hardcoded module "node:v8" // This is a stub! None of this is actually implemented yet. import { hideFromStack, throwNotImplemented } from "../shared"; import { serialize as jscSerialize, deserialize as jscDeserialize } from "bun:jsc"; function notimpl(message) { throwNotImplemented("node:v8 " + message); } class Deserializer { constructor() { notimpl("Deserializer"); } } class Serializer { constructor() { notimpl("Serializer"); } } class DefaultDeserializer extends Deserializer {} class DefaultSerializer extends Serializer {} class GCProfiler { constructor() { notimpl("GCProfiler"); } } function cachedDataVersionTag() { notimpl("cachedDataVersionTag"); } function getHeapSnapshot() { notimpl("getHeapSnapshot"); } function getHeapStatistics() { notimpl("getHeapStatistics"); } function getHeapSpaceStatistics() { notimpl("getHeapSpaceStatistics"); } function getHeapCodeStatistics() { notimpl("getHeapCodeStatistics"); } function setFlagsFromString() { notimpl("setFlagsFromString"); } function deserialize(value) { return jscDeserialize(value); } function takeCoverage() { notimpl("takeCoverage"); } function stopCoverage() { notimpl("stopCoverage"); } function serialize(arg1) { return jscSerialize(arg1, { binaryType: "nodebuffer" }); } function writeHeapSnapshot() { notimpl("writeHeapSnapshot"); } function setHeapSnapshotNearHeapLimit() { notimpl("setHeapSnapshotNearHeapLimit"); } const promiseHooks = { createHook: () => { notimpl("createHook"); }, onInit: () => { notimpl("onInit"); }, onBefore: () => { notimpl("onBefore"); }, onAfter: () => { notimpl("onAfter"); }, onSettled: () => { notimpl("onSettled"); }, }, startupSnapshot = { addDeserializeCallback: () => notimpl("addDeserializeCallback"), addSerializeCallback: () => notimpl("addSerializeCallback"), setDeserializeMainFunction: () => notimpl("setDeserializeMainFunction"), isBuildingSnapshot: () => notimpl("isBuildingSnapshot"), }; const defaultObject = { cachedDataVersionTag, getHeapSnapshot, getHeapStatistics, getHeapSpaceStatistics, getHeapCodeStatistics, setFlagsFromString, deserialize, takeCoverage, stopCoverage, serialize, writeHeapSnapshot, setHeapSnapshotNearHeapLimit, promiseHooks, startupSnapshot, Deserializer, Serializer, [Symbol.for("CommonJS")]: 0, }; export { cachedDataVersionTag, getHeapSnapshot, getHeapStatistics, getHeapSpaceStatistics, getHeapCodeStatistics, setFlagsFromString, deserialize, takeCoverage, stopCoverage, serialize, writeHeapSnapshot, setHeapSnapshotNearHeapLimit, promiseHooks, startupSnapshot, Deserializer, Serializer, DefaultDeserializer, DefaultSerializer, GCProfiler, defaultObject as default, }; hideFromStack( notimpl, cachedDataVersionTag, getHeapSnapshot, getHeapStatistics, getHeapSpaceStatistics, getHeapCodeStatistics, setFlagsFromString, deserialize, takeCoverage, stopCoverage, serialize, writeHeapSnapshot, setHeapSnapshotNearHeapLimit, Deserializer, Serializer, DefaultDeserializer, DefaultSerializer, GCProfiler, ); 6a93a04eda5d8d6947eb1ccc675a79266dbf4&follow=1'>msghdr_bsdvar.go (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2018-02-09Update German translationGravatar stratmaster 2-10/+18
2018-02-08Improve error handling for HTTP clientGravatar Frédéric Guillot 5-7/+62
2018-02-08Add missing German stringGravatar stratmaster 2-4/+6
2018-02-07Strip invalid XML characters to avoid parsing errorsGravatar Frédéric Guillot 1-1/+26
2018-02-07Remove period for feed errorsGravatar Frédéric Guillot 4-23/+23
2018-02-07Improve error handling when the response is emptyGravatar Frédéric Guillot 5-6/+28
2018-02-07Add missing French translationGravatar stratmaster 2-2/+4
2018-02-05Update ChangeLog2.0.2Gravatar Frédéric Guillot 1-0/+14
2018-02-04Add support for Let's Encrypt http-01 challengeGravatar Frédéric Guillot 32-286/+2042
2018-02-04Move template functions outside engine (refactoring)Gravatar Frédéric Guillot 9-214/+254
2018-02-04Take timezone into consideration when calculating relative timeGravatar Frédéric Guillot 16-58/+91
2018-02-03Add support for HTTP Strict Transport Security headerGravatar Frédéric Guillot 4-3/+33
2018-02-03Add support for base URLs with subfoldersGravatar Frédéric Guillot 10-23/+105
2018-02-01Update German translationGravatar stratmaster 2-4/+12
2018-01-31Add missing about menu in settingsGravatar Frédéric Guillot 5-5/+29
2018-01-31Show API URL endpoints in user interfaceGravatar Frédéric Guillot 11-14/+99
2018-01-29Do not update entry date while refreshing a feedGravatar Frédéric Guillot 1-4/+5
2018-01-29Enable debug mode for integration testsGravatar Frédéric Guillot 1-1/+1
2018-01-29Add the possiblity to enable debug mode with an environment variableGravatar Frédéric Guillot 2-1/+6
2018-01-29Keep code base tidyGravatar Frédéric Guillot 5-18/+16
2018-01-29Add flag to enable debug loggingGravatar Rogier Lommers 2-7/+64
2018-01-25Improve unread counter updatesGravatar Mahendra Kalkura 1-6/+35